:root {
  --navy: #061b26;
  --navy-2: #0b2531;
  --teal: #0b6f68;
  --teal-2: #19c4bd;
  --cyan: #27d9f2;
  --amber: #f59e0b;
  --ink: #0f172a;
  --muted: #617084;
  --line: #d8e2ea;
  --soft: #f4f7f9;
  --white: #fff;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--soft);
  color: var(--ink);
  font-family: Aptos, "Segoe UI", Arial, sans-serif;
}

a {
  color: inherit;
}

button,
button *,
.button,
.button *,
[data-cart-add],
[data-cart-add] *,
[role="button"],
[role="button"] * {
  cursor: pointer;
}

svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
  flex: 0 0 auto;
}

.lucide-icon {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
  color: inherit;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  min-height: 82px;
  padding: 0 clamp(18px, 4vw, 62px);
  border-bottom: 1px solid rgba(39, 217, 242, 0.12);
  background: #000c1d;
  color: white;
  backdrop-filter: blur(14px);
}

.brand-link,
.site-nav,
.header-actions,
.hero-actions,
.hero-proof,
.kora-actions span,
.service-tile,
.site-footer {
  display: flex;
  align-items: center;
}

.brand-link {
  gap: 12px;
  text-decoration: none;
}

.brand-link img {
  display: block;
  width: 270px;
  max-width: 100%;
  height: auto;
}

.site-header .brand-link img {
  width: auto;
  height: 58px;
  max-width: none;
}

.site-nav {
  justify-content: center;
  gap: 14px;
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 42px;
  border: 1px solid rgba(39, 217, 242, 0.28);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.06);
  color: #e8f0f4;
  font: inherit;
}

.nav-dropdown,
.cart-dropdown,
.login-dropdown {
  position: relative;
}

.nav-dropdown > a {
  position: relative;
  padding-inline: 2px;
  border-radius: 0;
}

.nav-dropdown:hover > a,
.nav-dropdown:focus-within > a {
  background: transparent;
  color: #7cf3ef;
}

.nav-dropdown:hover > a::before,
.nav-dropdown:focus-within > a::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 3px;
  height: 2px;
  border-radius: 999px;
  background: #7cf3ef;
}

.nav-dropdown:hover > a::after,
.nav-dropdown:focus-within > a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -21px;
  width: 16px;
  height: 16px;
  background: white;
  box-shadow: -1px -1px 0 rgba(39, 217, 242, 0.16);
  transform: translateX(-50%) rotate(45deg);
}

.site-nav a,
.header-cta,
.button,
.ghost-button,
.icon-button,
.preview-head button {
  min-height: 42px;
  border-radius: 3px;
  font: inherit;
  font-weight: 400;
  text-decoration: none;
}

.site-nav a {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: #e8f0f4;
  padding: 0 2px;
}

.site-nav a svg {
  width: 14px;
  height: 14px;
}

.site-nav a:hover,
.site-nav a.is-active {
  color: #7cf3ef;
}

.nav-panel,
.cart-panel,
.login-panel {
  position: absolute;
  top: 100%;
  right: 0;
  z-index: 40;
  display: grid;
  min-width: 320px;
  border: 1px solid rgba(39, 217, 242, 0.2);
  border-radius: 8px;
  background: white;
  color: var(--ink);
  box-shadow: 0 30px 80px rgba(2, 8, 18, 0.26);
  opacity: 0;
  pointer-events: none;
  transform: translateY(6px);
  transition: opacity 0.16s ease, transform 0.16s ease;
}

.nav-panel {
  left: 50%;
  right: auto;
  width: min(1040px, calc(100vw - 36px));
  grid-template-columns: repeat(2, minmax(260px, 1fr)) 280px;
  gap: 8px 22px;
  padding: 24px;
  transform: translate(-50%, 6px);
}

.nav-panel-hosting {
  left: clamp(-320px, -26vw, -120px);
  transform: translate(0, 6px);
}

.nav-panel::before {
  content: none;
}

.nav-dropdown:hover .nav-panel,
.nav-dropdown:focus-within .nav-panel,
.cart-dropdown:hover .cart-panel,
.cart-dropdown:focus-within .cart-panel,
.cart-dropdown.is-open .cart-panel,
.login-dropdown:hover .login-panel,
.login-dropdown:focus-within .login-panel {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.nav-dropdown:hover .nav-panel,
.nav-dropdown:focus-within .nav-panel {
  transform: translate(-50%, 0);
}

.nav-dropdown:hover .nav-panel-hosting,
.nav-dropdown:focus-within .nav-panel-hosting {
  transform: translate(0, 0);
}

.nav-panel a {
  position: relative;
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  gap: 13px;
  min-height: 70px;
  padding: 11px 12px;
  border-radius: 7px;
  color: var(--ink);
  transition: background 0.15s ease, transform 0.15s ease;
}

.nav-panel a:hover {
  background: #eef9f8;
  color: var(--ink);
  transform: translateX(4px);
}

.nav-panel a:hover::before {
  content: "";
  position: absolute;
  left: 0;
  top: 14px;
  bottom: 14px;
  width: 3px;
  border-radius: 999px;
  background: var(--teal);
}

.nav-panel svg,
.nav-panel a > img {
  width: 42px;
  height: 42px;
  padding: 10px;
  border-radius: 8px;
  background: #e3f6f3;
  color: var(--teal);
  box-shadow: none;
}

.nav-panel a > img {
  object-fit: contain;
}

.nav-panel strong,
.cart-panel strong {
  display: block;
  font-size: 0.96rem;
}

.nav-panel small,
.cart-panel small {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.78rem;
}

.nav-panel-help {
  grid-row: 1 / span 3;
  grid-column: 3;
  display: grid;
  align-content: stretch;
  gap: 12px;
  min-height: 100%;
  margin: -24px -24px -24px 0;
  padding: 26px;
  border-left: 1px solid rgba(39, 217, 242, 0.18);
  background:
    radial-gradient(circle at 100% 100%, rgba(25, 196, 189, 0.2), transparent 44%),
    linear-gradient(180deg, #e8f7fb, #dff1f7);
}

.nav-panel-help strong {
  color: #153b56;
  font-size: 1.12rem;
}

.nav-panel-help small {
  color: #5d7382;
  line-height: 1.55;
}

.nav-panel-help-list {
  display: grid;
  gap: 10px;
  margin: 8px 0;
}

.nav-panel-help-list span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #153b56;
  font-size: 0.88rem;
  font-weight: 700;
}

.nav-panel-help-list svg {
  width: 18px;
  height: 18px;
  padding: 0;
  background: transparent;
  color: var(--teal);
}

.nav-panel-help a {
  display: inline-flex;
  width: max-content;
  min-height: 38px;
  align-items: center;
  align-self: end;
  margin-top: auto;
  border-radius: 6px;
  background: var(--teal);
  color: white;
  padding: 0 18px;
  cursor: pointer;
}

.nav-panel-help a:hover {
  background: #0c817d;
  color: white;
}

.header-actions {
  gap: 14px;
}

.icon-button {
  position: relative;
  display: grid;
  place-items: center;
  width: 42px;
  border: 0;
  border-right: 1px solid rgba(255, 255, 255, 0.25);
  background: transparent;
  color: white;
  cursor: pointer;
  text-decoration: none;
}

.cart-button > span {
  position: absolute;
  top: 2px;
  right: 3px;
  display: grid;
  place-items: center;
  min-width: 18px;
  height: 18px;
  border-radius: 999px;
  background: var(--teal-2);
  color: #00121d;
  padding: 0 5px;
  font-size: 0.72rem;
  font-weight: 700;
}

.cart-panel {
  width: 360px;
  padding: 14px;
}

.cart-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}

.cart-items {
  display: grid;
  gap: 8px;
  max-height: 260px;
  overflow: auto;
  padding: 12px 0;
}

.cart-items p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.cart-item {
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 5px;
  background: #fbfdfd;
}

.cart-item svg {
  width: 36px;
  height: 36px;
  padding: 8px;
  border-radius: 50%;
  background: #e3f6f3;
  color: var(--teal);
}

.cart-item b {
  font-size: 0.92rem;
}

.cart-item span {
  color: var(--muted);
  font-size: 0.78rem;
}

.cart-remove {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid #FCA5A5;
  border-radius: 10px;
  background: #FEF2F2;
  color: #DC2626;
  cursor: pointer;
  font-size: 24px;
  font-weight: 800;
  line-height: 1;
  transition: background 200ms ease, border-color 200ms ease, color 200ms ease, transform 200ms ease;
}

.cart-remove:hover,
.cart-remove:focus-visible {
  border-color: #DC2626;
  background: #DC2626;
  color: #FFFFFF;
  transform: translateY(-1px);
}

.cart-checkout {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 42px;
  border-radius: 3px;
  background: var(--teal);
  color: white;
  text-decoration: none;
}

.login-panel {
  width: 330px;
  min-width: 330px;
  gap: 12px;
  padding: 18px;
  border-top: 3px solid var(--teal);
}

.login-panel-head {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}

.login-panel-head > svg {
  width: 42px;
  height: 42px;
  padding: 10px;
  border-radius: 8px;
  background: #e3f6f3;
  color: var(--teal);
}

.login-panel strong {
  color: var(--ink);
  font-size: 1rem;
}

.login-panel-head small {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.35;
}

.login-panel label {
  display: grid;
  gap: 6px;
  color: var(--muted);
  font-size: 0.78rem;
}

.login-panel input {
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fbfdfd;
  padding: 0 12px;
  font: inherit;
  color: var(--ink);
}

.login-panel input:focus {
  outline: 2px solid rgba(39, 217, 242, 0.24);
  border-color: var(--teal);
}

.login-panel button {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  border-radius: 6px;
  background: var(--teal);
  color: white;
  font: inherit;
  cursor: pointer;
}

.login-panel > a {
  color: var(--teal);
  font-size: 0.84rem;
  text-decoration: none;
}

.login-panel .login-panel-google,
.google-login-button,
.cart-auth-oauth {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: #fff;
  color: var(--ink);
  font: 700 0.9rem/1.2 inherit;
  text-decoration: none;
  transition: border-color .18s ease, background .18s ease, color .18s ease, transform .18s ease;
}

.login-panel .login-panel-google:hover,
.google-login-button:hover,
.cart-auth-oauth:hover {
  border-color: var(--teal);
  background: #f0fdfa;
  color: #007f68;
}

.login-separator {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-size: 0.78rem;
}

.login-separator::before,
.login-separator::after {
  content: "";
  height: 1px;
  flex: 1;
  background: var(--line);
}

.login-panel .login-panel-notification {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  min-height: 58px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfdfd;
  color: var(--ink);
  padding: 8px 10px;
}

.login-panel-notification > svg {
  width: 42px;
  height: 42px;
  border-radius: 8px;
  background: #e3f6f3;
  color: var(--teal);
  padding: 10px;
}

.login-panel-notification span {
  min-width: 0;
}

.login-panel-notification strong,
.login-panel-notification small {
  display: block;
}

.login-panel-notification b {
  display: grid;
  place-items: center;
  min-width: 24px;
  height: 24px;
  border-radius: 999px;
  background: var(--teal-2);
  color: #001225;
  font-size: .78rem;
}

.header-cta,
.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 9px;
  border: 0;
  background: var(--teal);
  color: white;
  padding: 0 18px;
}

.header-cta {
  background: transparent;
}

.login-dropdown .header-cta,
.login-dropdown .header-cta:hover {
  background: transparent;
}

.button {
  border: 1px solid var(--teal);
}

.header-cta:hover {
  background: transparent;
  color: white;
}

.button:hover,
.header-cta:hover {
  background: #0c817d;
}

.button:disabled {
  cursor: wait;
  opacity: 0.72;
}

.home-plans .plan-card .button[data-cart-add],
.hosting-table .button[data-cart-add],
.domain-result-row button[data-cart-add] {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 46px;
  border: 0;
  border-radius: 3px;
  background: var(--teal);
  color: #fff;
  padding: 0 18px;
  font-weight: 400;
  text-decoration: none;
  white-space: nowrap;
}

.home-plans .plan-card .button[data-cart-add] svg,
.hosting-table .button[data-cart-add] svg,
.domain-result-row button[data-cart-add] svg {
  width: 18px;
  height: 18px;
  margin-left: auto;
  color: currentColor;
}

.home-plans .plan-card .button[data-cart-add]:hover,
.hosting-table .button[data-cart-add]:hover,
.domain-result-row button[data-cart-add]:hover {
  background: #0b2531;
  opacity: 1;
}

.ghost-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(39, 217, 242, 0.55);
  background: rgba(6, 27, 38, 0.25);
  color: white;
  padding: 0 32px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(360px, 0.85fr) minmax(480px, 1fr);
  gap: clamp(30px, 5vw, 74px);
  align-items: center;
  min-height: 610px;
  padding: clamp(48px, 7vw, 92px) clamp(22px, 6vw, 82px) 26px;
  background:
    radial-gradient(circle at 80% 34%, rgba(39, 217, 242, 0.26), transparent 32%),
    linear-gradient(180deg, #082c39 0%, #061b26 84%);
  color: white;
  overflow: hidden;
}

.hero-copy {
  position: relative;
  z-index: 1;
}

.hero h1 {
  margin: 0;
  max-width: 720px;
  font-size: clamp(3.2rem, 5.8vw, 5.4rem);
  line-height: 1.08;
  letter-spacing: 0;
}

.hero h1 span {
  color: var(--teal-2);
}

.hero p {
  max-width: 560px;
  margin: 22px 0 0;
  color: #c6d3dc;
  font-size: 1.23rem;
  line-height: 1.45;
}

.hero-actions {
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.hero-actions .button,
.hero-actions .ghost-button {
  min-width: 166px;
}

.hero-proof {
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 30px;
}

.hero-proof span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #e7f4f6;
  font-size: 0.91rem;
  font-weight: 400;
  letter-spacing: 0;
  text-shadow: none;
}

.hero-proof svg {
  display: block;
  color: var(--teal-2);
}

.kora-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(320px, 1fr) minmax(240px, 0.82fr);
  align-items: center;
  min-height: 330px;
  gap: 28px;
  padding: 34px;
  border: 1px solid rgba(151, 213, 226, 0.24);
  border-radius: 3px;
  background:
    radial-gradient(circle at 26% 50%, rgba(39, 217, 242, 0.24), transparent 36%),
    rgba(255, 255, 255, 0.035);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.34);
  overflow: hidden;
}

.kora-hero-image {
  grid-column: 2;
  grid-row: 1;
  width: min(100%, 300px);
  max-height: 300px;
  aspect-ratio: 1;
  object-fit: contain;
  justify-self: center;
  align-self: center;
  filter: drop-shadow(0 0 26px rgba(39, 217, 242, 0.38));
}

.kora-hero picture,
.kora-chat-card picture {
  display: contents;
}

.kora-hero-panel {
  grid-column: 1;
  grid-row: 1;
  padding: 0;
}

.kora-hero-panel h2 {
  margin: 0 0 10px;
  font-size: 1.5rem;
}

.kora-hero-panel p {
  margin: 0;
  color: #c8d6de;
  font-size: 1rem;
}

.kora-actions {
  display: grid;
  gap: 12px;
  margin: 20px 0;
}

.kora-actions span {
  gap: 10px;
  color: white;
  font-size: 0.92rem;
}

.kora-actions svg {
  padding: 4px;
  width: 28px;
  height: 28px;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.13);
}

.kora-button {
  width: 100%;
}

.service-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin: -8px clamp(22px, 6vw, 82px) 0;
  position: relative;
  z-index: 2;
}

.service-tile {
  position: relative;
  min-height: 94px;
  gap: 13px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 3px;
  background: white;
  text-decoration: none;
  box-shadow: 0 14px 36px rgba(5, 18, 28, 0.12);
}

.service-tile-icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--teal);
  color: white;
}

.service-tile-text {
  display: block;
  min-width: 0;
}

.service-tile-text strong {
  display: block;
  margin-bottom: 5px;
  font-size: 0.98rem;
}

.service-tile-text small {
  display: block;
  color: #4b5d70;
  font-size: 0.76rem;
  line-height: 1.35;
}

.service-tile > svg:last-child {
  margin-left: auto;
  width: 15px;
  color: #4b5d70;
}

.service-tile:hover {
  border-color: var(--teal-2);
}

.kora-start-section {
  display: grid;
  grid-template-columns: minmax(320px, 0.72fr) minmax(480px, 1fr);
  gap: clamp(34px, 6vw, 92px);
  align-items: center;
  min-height: 520px;
  padding: clamp(54px, 7vw, 92px) clamp(22px, 10vw, 170px);
  background:
    radial-gradient(circle at 80% 50%, rgba(39, 217, 242, 0.2), transparent 30%),
    linear-gradient(180deg, #082c39 0%, #061b26 100%);
  color: white;
}

.kora-start-copy {
  display: grid;
  justify-items: start;
  gap: 22px;
}

.kora-award {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #dbeafe;
  font-size: 0.86rem;
}

.kora-award svg {
  color: var(--teal-2);
}

.kora-start-copy h2 {
  margin: 0;
  max-width: 560px;
  font-size: clamp(2.8rem, 5vw, 4.6rem);
  line-height: 1.08;
  font-weight: 400;
}

.kora-start-copy p {
  max-width: 620px;
  margin: 0;
  color: #c9d6e1;
  font-size: 1.05rem;
  line-height: 1.65;
}

.kora-start-visual {
  position: relative;
  min-height: 390px;
}

.kora-chat-card {
  position: absolute;
  inset: 0 0 auto auto;
  width: min(620px, 100%);
  min-height: 360px;
  border-radius: 3px;
  background:
    linear-gradient(135deg, rgba(213, 236, 255, 0.94), rgba(146, 205, 232, 0.72)),
    var(--teal);
  overflow: hidden;
}

.kora-chat-card::after {
  content: "";
  position: absolute;
  right: -70px;
  bottom: -100px;
  width: 360px;
  height: 360px;
  transform: rotate(45deg);
  background: rgba(255, 255, 255, 0.5);
}

.kora-chat-card img {
  position: absolute;
  right: 18px;
  bottom: 0;
  z-index: 2;
  width: min(330px, 54%);
  max-height: 360px;
  object-fit: contain;
  filter: drop-shadow(0 0 28px rgba(0, 0, 0, 0.28));
}

.kora-chat-panel {
  position: relative;
  z-index: 3;
  display: grid;
  place-items: center;
  gap: 8px;
  width: 290px;
  margin: 38px 0 0 34px;
  padding: 42px 28px;
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: 3px;
  background: rgba(238, 247, 255, 0.78);
  color: var(--ink);
  text-align: center;
  box-shadow: 0 18px 50px rgba(5, 18, 28, 0.16);
}

.kora-chat-panel strong {
  font-size: 1.45rem;
  font-weight: 500;
}

.kora-chat-panel span {
  color: #526173;
}

.kora-prompt-list {
  position: absolute;
  left: 24px;
  bottom: 18px;
  z-index: 4;
  display: grid;
  gap: 12px;
  width: min(440px, calc(100% - 48px));
}

.kora-prompt-list a {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 50px;
  width: max-content;
  max-width: 100%;
  padding: 0 18px;
  border-radius: 3px;
  background: white;
  color: #1f2937;
  text-decoration: none;
  box-shadow: 0 12px 28px rgba(5, 18, 28, 0.18);
}

.kora-prompt-list a:nth-child(2) {
  margin-left: 42px;
}

.kora-prompt-list a:nth-child(3) {
  margin-left: 86px;
}

.kora-prompt-list svg {
  width: 16px;
  height: 16px;
  color: var(--teal);
}

.domain-band {
  display: grid;
  grid-template-columns: minmax(320px, 0.45fr) minmax(480px, 1fr);
  gap: 24px;
  align-items: center;
  margin: 26px clamp(22px, 6vw, 82px) 0;
  padding: 28px;
  border: 0;
  border-radius: 3px;
  background: transparent;
  color: var(--ink);
}

.domain-band > div:first-child {
  align-self: start;
  min-height: 122px;
}

.domain-band h2,
.migration-section h2 {
  margin: 12px 0 0;
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  line-height: 1.12;
}

.domain-box {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  padding: 12px;
}

.domain-box input {
  min-height: 54px;
  border: 1px solid var(--line);
  border-radius: 3px;
  background: #f8fafc;
  padding: 0 16px;
  font: inherit;
  color: var(--ink);
  font-size: 1.08rem;
}

.domain-box .button:hover {
  background: var(--navy);
  opacity: 1;
}

.domain-box .button,
.domain-box .button *,
.domain-finder-bar .button,
.domain-finder-bar .button * {
  cursor: pointer !important;
}

.domain-search {
  display: grid;
  gap: 0;
  border: 1px solid var(--line);
  border-radius: 3px;
  background: white;
  box-shadow: 0 14px 36px rgba(5, 18, 28, 0.08);
  overflow: hidden;
}

.domain-results {
  display: grid;
  gap: 6px;
  min-height: 0;
  padding: 0;
}

.domain-results.has-results {
  padding: 0 12px 12px;
  animation: domain-drop 0.2s ease-out;
}

.domain-message,
.domain-loading {
  border: 0;
  border-radius: 3px;
  color: var(--muted);
  padding: 12px;
}

.domain-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0 6px;
}

@keyframes domain-drop {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.domain-table td {
  padding: 10px 8px;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.domain-table tr:first-child td {
  border-top: 0;
}

.domain-table td:first-child {
  width: 36px;
  border-radius: 3px 0 0 3px;
}

.domain-table td:last-child {
  width: 96px;
  border-radius: 0 3px 3px 0;
  text-align: right;
}

.domain-name {
  color: var(--ink);
  overflow-wrap: anywhere;
  font-size: 1rem;
}

.domain-status-icon,
.domain-status,
.domain-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 24px;
  border-radius: 3px;
}

.domain-status-icon {
  width: 24px;
}

.domain-status {
  min-width: 112px;
  padding: 0 8px;
  white-space: nowrap;
}

.domain-action {
  min-width: 88px;
  min-height: 38px;
  border: 0;
  padding: 0 14px;
  color: #fff;
  text-decoration: none;
  background: var(--teal);
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.domain-action:hover {
  background: #0b2531;
}

.domain-table .is-taken .domain-action {
  background: #eef2f6;
  color: #617084;
}

.domain-table .is-taken .domain-action:hover {
  background: #d8e2ea;
  color: var(--ink);
}

.domain-table .is-free .domain-status,
.domain-table .is-free .domain-status-icon {
  background: #129792;
  color: white;
}

.domain-table .is-taken .domain-status,
.domain-table .is-taken .domain-status-icon {
  background: #f54a4a;
  color: white;
}

.domain-loading {
  grid-column: 1 / -1;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  width: max-content;
}

.domain-loading span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--teal-2);
  animation: domain-pulse 0.9s infinite ease-in-out;
}

.domain-loading span:nth-child(2) {
  animation-delay: 0.12s;
}

.domain-loading span:nth-child(3) {
  animation-delay: 0.24s;
}

.domain-page-search {
  display: grid;
  grid-template-columns: minmax(280px, 0.42fr) minmax(420px, 1fr);
  gap: 24px;
  align-items: start;
}

.domain-page-search h2 {
  margin: 10px 0;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
}

.domain-page-search p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.domain-service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.domain-service-grid article {
  display: grid;
  gap: 12px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: white;
  padding: 22px;
  box-shadow: 0 14px 34px rgba(29, 45, 60, 0.06);
}

.domain-service-grid svg {
  width: 42px;
  height: 42px;
  border-radius: 6px;
  background: #e3f6f3;
  color: var(--teal);
  padding: 10px;
}

.domain-service-grid h3,
.domain-flow-card h3 {
  margin: 0;
}

.domain-service-grid p,
.domain-flow-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.domain-service-grid a {
  color: var(--teal);
  font-weight: 700;
  text-decoration: none;
}

.domain-flow-section {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.domain-flow-card {
  border-left: 3px solid var(--teal);
  background: white;
  padding: 20px;
}

.domain-flow-card span {
  color: var(--teal);
  font-weight: 800;
}

@keyframes domain-pulse {
  0%,
  80%,
  100% {
    opacity: 0.35;
    transform: scale(0.78);
  }
  40% {
    opacity: 1;
    transform: scale(1);
  }
}

.domain-finder {
  margin: 0;
  padding: 42px clamp(18px, 4vw, 48px) 54px;
  background:
    linear-gradient(135deg, rgba(39, 217, 242, 0.18), rgba(16, 185, 129, 0.08) 42%, transparent 42%),
    linear-gradient(180deg, #000c1d 0 188px, #f4f7f9 188px);
}

.domain-finder-search {
  max-width: 1146px;
  margin: 0 auto;
  border: 1px solid var(--line);
  border-radius: 3px;
  background: #fff;
  box-shadow: 0 14px 36px rgba(5, 18, 28, 0.08);
  overflow: hidden;
}

.domain-finder-bar {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  max-width: none;
  margin: 0;
  border: 0;
  border-bottom: 1px solid var(--line);
  background: #fff;
  box-shadow: none;
  padding: 12px;
}

.domain-finder-bar input {
  min-height: 54px;
  border: 1px solid var(--line);
  border-radius: 3px;
  padding: 0 16px;
  color: #152033;
  font: inherit;
  font-size: 1.08rem;
  font-weight: 400;
}

.domain-finder-bar button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 54px;
  border: 0;
  border-radius: 3px;
  background: var(--teal);
  color: #fff;
  padding: 0 18px;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.domain-finder-bar button:hover {
  background: var(--navy);
}

.domain-finder-bar svg,
.domain-result-row button svg,
.domain-filter-pills svg {
  width: 20px;
  height: 20px;
}

.domain-filter-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  align-items: end;
  max-width: none;
  margin: 0;
  padding: 24px 28px;
  border-bottom: 1px solid #d8e2ea;
  background: #fbfdfe;
}

.domain-filter-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.domain-filter-pills span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 40px;
  border: 1px solid #dce2eb;
  border-radius: 8px;
  padding: 0 16px;
  color: #6c7484;
  font-weight: 700;
  background: #fff;
}

.domain-filter-pills .is-active {
  border-color: transparent;
  background: var(--navy);
  color: #fff;
}

.domain-toggle {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 42px;
  border: 0;
  padding: 0;
  background: transparent;
  color: #273246;
  font-weight: 500;
  white-space: nowrap;
  cursor: pointer;
}

.domain-toggle input {
  position: absolute;
  opacity: 0;
}

.domain-toggle i {
  position: relative;
  order: -1;
  width: 42px;
  height: 22px;
  border: 0;
  border-radius: 999px;
  background: #cbd5e1;
}

.domain-toggle input:checked + i {
  background: var(--teal);
}

.domain-toggle i::before {
  content: "";
  position: absolute;
  top: 4px;
  left: 4px;
  width: 14px;
  height: 14px;
  border: 0;
  border-radius: 50%;
  background: #fff;
  opacity: 1;
  transform: none;
  transition: transform 200ms ease;
}

.domain-toggle input:checked + i::before {
  transform: translateX(20px);
}

.domain-result-list {
  max-width: none;
  margin: 0;
  background: #fff;
}

.domain-price-note {
  border-top: 1px solid #e5edf3;
  padding: 16px 28px 20px;
  color: #617084;
  font-size: 0.86rem;
  line-height: 1.45;
}

.domain-finder .domain-results.has-results {
  padding: 0;
}

.domain-result-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 150px 220px;
  gap: 20px;
  align-items: center;
  min-height: 76px;
  border-top: 1px solid #e5edf3;
  padding: 0 28px;
  color: #6f7888;
}

.domain-result-row:first-child {
  border-top: 0;
}

.domain-result-row > div {
  display: grid;
  gap: 3px;
}

.domain-result-row strong {
  color: var(--ink);
  font-size: 1.08rem;
  overflow-wrap: anywhere;
}

.domain-result-row.is-taken strong {
  color: #94a3b8;
}

.domain-hide-taken .is-taken {
  display: none;
}

.domain-result-row small {
  color: #8a93a3;
  font-size: 0.82rem;
}

.domain-result-row p {
  display: grid;
  gap: 2px;
  justify-items: end;
  margin: 0;
  color: #1f2937;
}

.domain-result-row s {
  color: #98a1b2;
}

.domain-result-row b {
  color: #1d2738;
  font-size: 1.12rem;
}

.domain-result-row button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 50px;
  border: 0;
  border-radius: 3px;
  background: var(--teal);
  color: #fff;
  padding: 0 18px;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.domain-result-row button:hover {
  background: var(--navy);
}

.domain-result-row.is-taken button {
  background: #eef2f6;
  color: #617084;
}

.domain-info-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.42fr) minmax(0, 1fr);
  gap: 28px;
  align-items: start;
}

.domain-info-copy h1 {
  margin: 10px 0 12px;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1.04;
}

.domain-info-copy p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.domain-info-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.domain-info-grid article {
  display: grid;
  gap: 12px;
  border: 1px solid var(--line);
  background: #fff;
  padding: 22px;
}

.domain-info-grid svg {
  width: 42px;
  height: 42px;
  border-radius: 6px;
  background: #e8f6ff;
  color: #0f69c9;
  padding: 10px;
}

.domain-info-grid h3,
.domain-info-grid p {
  margin: 0;
}

.domain-info-grid p {
  color: var(--muted);
  line-height: 1.55;
}

@media (max-width: 920px) {
  .domain-finder {
    padding-top: 22px;
    background:
      linear-gradient(135deg, rgba(39, 217, 242, 0.16), rgba(16, 185, 129, 0.08) 46%, transparent 46%),
      linear-gradient(180deg, #000c1d 0 150px, #f4f7f9 150px);
  }

  .domain-finder-bar,
  .domain-filter-row,
  .domain-result-row,
  .domain-info-section,
  .domain-info-grid {
    grid-template-columns: 1fr;
  }

  .domain-finder-bar {
    gap: 10px;
  }

  .domain-finder-bar input {
    min-height: 54px;
  }

  .domain-finder-bar button {
    min-height: 56px;
  }

  .domain-filter-row {
    align-items: start;
    padding: 24px 0;
  }

  .domain-toggle {
    justify-content: space-between;
  }

  .domain-result-row {
    gap: 10px;
    padding: 14px 0;
  }

  .domain-result-row p {
    justify-items: start;
  }

  .domain-result-row button {
    width: 100%;
  }
}

.light {
  border-color: var(--line);
  background: white;
  color: var(--ink);
}

.home-plans {
  padding: clamp(64px, 7vw, 104px) clamp(22px, 5vw, 72px);
  background: #f5f8fb;
}

.plans-head {
  display: grid;
  place-items: center;
  gap: 12px;
  margin-bottom: 42px;
  text-align: center;
}

.plans-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 34px;
  padding: 0 18px;
  border: 1px solid rgba(20, 184, 166, 0.35);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.76);
  color: var(--teal);
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.plans-kicker svg {
  width: 17px;
  height: 17px;
}

.plans-head h2 {
  max-width: 820px;
  margin: 0;
  color: #07142a;
  font-size: clamp(2.35rem, 4.6vw, 4.25rem);
  font-weight: 850;
  line-height: 1.08;
}

.plans-head h2 span {
  color: var(--teal);
}

.plans-head p {
  margin: 0;
  color: #5b677a;
  font-size: clamp(1rem, 1.5vw, 1.2rem);
}

.home-plans .plan-grid {
  max-width: 1180px;
  margin: 0 auto;
  padding-top: 17px;
  grid-template-columns: repeat(3, minmax(280px, 1fr));
  justify-content: center;
  align-items: stretch;
  gap: clamp(18px, 3vw, 28px);
}

.home-plans .plan-card {
  --plan-accent: var(--teal);
  --plan-soft: #e3f6f3;
  display: grid;
  grid-template-rows: auto auto auto auto 1fr auto;
  gap: 12px;
  position: relative;
  min-height: 500px;
  padding: 32px 28px 28px;
  border: 1px solid rgba(14, 165, 160, 0.12);
  border-radius: 8px;
  background: white;
  box-shadow: 0 22px 48px rgba(5, 18, 28, 0.1);
  overflow: visible;
}

.home-plans .plan-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: var(--plan-accent);
}

.home-plans .plan-card.is-featured {
  border-color: var(--plan-accent);
  box-shadow: 0 28px 58px rgba(18, 151, 146, 0.2);
}

.home-plans .plan-card:nth-child(3) {
  --plan-accent: #7557e6;
  --plan-soft: #eee9ff;
}

.plan-ribbon {
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 34px;
  padding: 0 18px;
  border-radius: 999px;
  background: #07142a;
  color: #7fe5dc;
  font-size: 0.82rem;
  font-weight: 850;
  white-space: nowrap;
  text-transform: uppercase;
}

.plan-ribbon svg {
  width: 15px;
  height: 15px;
}

.plan-label {
  color: #667085;
  font-size: 0.94rem;
  font-weight: 700;
  text-transform: uppercase;
}

.plan-card-icon {
  position: absolute;
  top: 34px;
  right: 28px;
  display: grid;
  place-items: center;
  width: 66px;
  height: 66px;
  border-radius: 8px;
  background: var(--plan-soft);
  color: var(--plan-accent);
}

.plan-card-icon svg {
  width: 31px;
  height: 31px;
}

.home-plans .plan-card h3 {
  max-width: calc(100% - 86px);
  margin: 0;
  color: #07142a;
  font-size: clamp(1.35rem, 2vw, 1.7rem);
  line-height: 1.05;
}

.plan-price {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  gap: 8px;
  margin-top: 6px;
  color: #07142a;
}

.plan-price em {
  flex: 0 0 100%;
  color: #8a94a6;
  font-size: 0.92rem;
  font-style: normal;
  text-decoration: line-through;
}

.plan-price span {
  margin-bottom: 9px;
  color: #24324a;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.05;
}

.home-plans .plan-card p {
  margin: 0;
  color: var(--plan-accent);
  font-weight: 400;
  text-align: center;
}

.plan-discount {
  min-height: 0 !important;
  margin-top: -4px;
  color: var(--plan-accent) !important;
  font-size: 0.9rem;
  font-weight: 400;
  text-align: center;
}

.home-plans .plan-card strong {
  color: #07142a;
  font-size: clamp(3rem, 4.5vw, 4.25rem);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 0.95;
}

.home-plans .plan-card small {
  min-height: 38px;
  color: var(--muted);
  line-height: 1.5;
}

.home-plans .plan-card .button {
  display: flex;
  justify-content: center;
  gap: 12px;
  min-height: 46px;
  margin: 10px 0 0;
  width: 100%;
  border-color: transparent;
  background: var(--plan-accent);
  color: white;
  box-shadow: 0 14px 26px rgba(20, 184, 166, 0.22);
}

.home-plans .plan-card .button svg {
  width: 18px;
  height: 18px;
  margin-left: auto;
}

.home-plans .plan-card:nth-child(3) .button[data-cart-add] {
  background: #7557e6;
  border-color: #7557e6;
  box-shadow: 0 14px 26px rgba(117, 87, 230, 0.2);
}

.home-plans .plan-card:nth-child(3) .button[data-cart-add]:hover {
  background: #5f45c8;
  border-color: #5f45c8;
}

.plans-billing-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: max-content;
  max-width: 100%;
  margin: 28px auto 0;
  padding: 10px 14px;
  border: 1px solid rgba(11, 111, 104, 0.18);
  background: #fff;
  color: #334155;
  box-shadow: 0 14px 34px rgba(5, 18, 28, 0.08);
}

.plans-billing-toggle span {
  font-size: 0.92rem;
  font-weight: 500;
}

.plans-billing-toggle b {
  color: var(--teal);
  font-weight: 700;
}

.plans-billing-toggle button {
  position: relative;
  width: 48px;
  height: 26px;
  border: 0;
  border-radius: 999px;
  background: #cbd5e1;
  padding: 0;
  cursor: pointer;
  transition: background 0.18s ease;
}

.plans-billing-toggle button i {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.18);
  transition: transform 0.18s ease;
}

.plans-billing-toggle.is-annual button {
  background: var(--teal);
}

.plans-billing-toggle.is-annual button i {
  transform: translateX(22px);
}

.home-plans .plan-options {
  display: grid;
  gap: 10px;
  margin: 8px 0 0;
  padding: 22px 0 0;
  border-top: 1px solid var(--line);
}

.home-plans .plan-options li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #1d2939;
  font-size: 0.92rem;
  line-height: 1.25;
}

.home-plans .plan-options li i {
  position: relative;
  display: inline-grid;
  flex: 0 0 20px;
  width: 20px;
  height: 20px;
  border: 0;
  border-radius: 50%;
  background: var(--plan-accent);
  -webkit-mask: url("check-list.svg") center / contain no-repeat;
  mask: url("check-list.svg") center / contain no-repeat;
  box-shadow: none;
}

.home-plans .plan-options li i::after {
  content: none;
}

.apps-section {
  padding: clamp(48px, 6vw, 78px) clamp(22px, 6vw, 82px);
  background: #f1f4f7;
}

.apps-section h2 {
  margin: 0 0 42px;
  color: var(--ink);
  font-size: 1.55rem;
  font-weight: 600;
}

.apps-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 42px clamp(28px, 5vw, 74px);
}

.app-item {
  display: grid;
  grid-template-columns: 86px minmax(0, 1fr);
  gap: 22px;
  align-items: center;
}

.app-item > span {
  display: grid;
  place-items: center;
  width: 74px;
  height: 74px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  box-shadow: 0 10px 24px rgba(5, 18, 28, 0.08);
}

.app-icon img {
  display: block;
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.app-item h3 {
  margin: 0 0 12px;
  color: var(--ink);
  font-size: 1.35rem;
}

.app-item p {
  margin: 0;
  color: #34465b;
  line-height: 1.45;
}

.email-confidence-section {
  padding: clamp(32px, 4vw, 56px) clamp(22px, 7vw, 126px);
  background: #f1f3f5;
}

.email-section-title {
  display: grid;
  place-items: center;
  margin-bottom: clamp(24px, 3vw, 38px);
  text-align: center;
}

.email-section-title h2 {
  max-width: 700px;
  margin: 0;
  color: #151922;
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  font-weight: 400;
  line-height: 1.05;
}

.email-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.email-feature-card {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  border-radius: 3px;
  background: white;
  padding: clamp(24px, 3vw, 40px) clamp(24px, 3vw, 40px) 170px;
}

.soft-label {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  padding: 0 12px;
  border-radius: 999px;
  background: #eef3f4;
  color: #151922;
  font-size: 0.86rem;
  font-weight: 400;
}

.email-feature-card h3 {
  max-width: 610px;
  margin: 24px 0 14px;
  color: #0f172a;
  font-size: clamp(1.65rem, 2.4vw, 2.45rem);
  font-weight: 400;
  line-height: 1.2;
}

.email-feature-card p {
  max-width: 650px;
  margin: 0 0 14px;
  color: #1f2937;
  font-size: 1rem;
  line-height: 1.45;
}

.email-feature-card ul {
  display: grid;
  gap: 9px;
  margin: 0 0 20px;
  padding: 0;
  list-style: none;
}

.email-feature-card li {
  display: flex;
  align-items: center;
  gap: 13px;
  color: #111827;
}

.email-feature-card li::before {
  content: "✓";
  color: var(--teal);
}

.email-feature-card > a {
  color: var(--teal);
  text-decoration: none;
}

.mail-mockup,
.campaign-mockup {
  position: absolute;
  right: clamp(16px, 4vw, 52px);
  bottom: 18px;
  left: clamp(16px, 4vw, 52px);
  min-height: 132px;
}

.mail-mockup::before,
.campaign-mockup::before {
  content: "";
  position: absolute;
  inset: 46px 24px 0;
  background: linear-gradient(135deg, rgba(18, 151, 146, 0.18), rgba(39, 217, 242, 0.08));
  transform: skewX(-22deg);
}

.mail-sidebar,
.mail-window,
.campaign-editor,
.campaign-card {
  position: absolute;
  z-index: 1;
  border: 1px solid var(--line);
  border-radius: 3px;
  background: white;
  box-shadow: 0 18px 50px rgba(5, 18, 28, 0.12);
}

.mail-sidebar {
  opacity: 1;
  transform: none;
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.mail-window {
  opacity: 1;
  transform: none;
  transition: opacity 0.65s ease 0.12s, transform 0.65s ease 0.12s;
}

.mail-window span {
  opacity: 1;
  transform: none;
  transition: opacity 0.5s ease 0.34s, transform 0.5s ease 0.34s;
}

.campaign-editor {
  opacity: 1;
  transform: none;
  transition: opacity 0.55s ease 0.18s, transform 0.55s ease 0.18s;
}

.campaign-card {
  opacity: 1;
  transform: none;
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.email-confidence-section.is-visible .mail-sidebar,
.email-confidence-section.is-visible .mail-window,
.email-confidence-section.is-visible .mail-window span,
.email-confidence-section.is-visible .campaign-editor,
.email-confidence-section.is-visible .campaign-card {
  opacity: 1;
  transform: translate(0, 0);
}

@media (prefers-reduced-motion: reduce) {
  .mail-sidebar,
  .mail-window,
  .mail-window span,
  .campaign-editor,
  .campaign-card {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

.mail-sidebar {
  left: 0;
  bottom: 0;
  width: 170px;
  height: 94px;
  padding: 16px;
}

.mail-sidebar span {
  display: block;
  width: 62px;
  height: 12px;
  margin-bottom: 16px;
  background: var(--ink);
}

.mail-sidebar b {
  display: block;
  width: 122px;
  height: 30px;
  border-radius: 3px;
  background: var(--teal);
  color: white;
  font-size: 0.7rem;
  font-weight: 400;
  line-height: 30px;
  text-align: center;
}

.mail-sidebar i,
.mail-window i {
  display: block;
  height: 10px;
  margin-top: 11px;
  border-radius: 999px;
  background: #eef3f4;
}

.mail-window {
  right: 0;
  bottom: 0;
  width: min(360px, 72%);
  height: 112px;
  padding: 18px;
}

.mail-window strong {
  display: block;
  margin-bottom: 14px;
  font-weight: 500;
}

.mail-window span {
  position: absolute;
  top: -38px;
  right: 42px;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid rgba(18, 151, 146, 0.32);
  border-radius: 3px;
  background: white;
  color: #0f172a;
  font-weight: 500;
  line-height: 48px;
  box-shadow: 0 16px 36px rgba(5, 18, 28, 0.12);
}

.campaign-editor {
  right: 32px;
  top: 4px;
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 52px;
  padding: 0 14px;
}

.campaign-editor span {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 3px;
  background: #e3f6f3;
  color: var(--teal);
}

.campaign-editor strong {
  min-width: 190px;
  min-height: 32px;
  border: 1px solid var(--teal);
  border-radius: 3px;
  padding: 0 14px;
  color: #151922;
  font-size: 1rem;
  font-weight: 400;
  line-height: 32px;
}

.campaign-card {
  left: 32px;
  bottom: 0;
  width: min(360px, 66%);
  height: 112px;
  padding: 18px;
}

.campaign-card i {
  display: block;
  width: 98px;
  height: 16px;
  border-radius: 999px;
  background: #dff7ef;
}

.campaign-card b {
  display: block;
  margin: 16px 0 8px;
  color: #0f172a;
  font-weight: 500;
}

.campaign-card p {
  max-width: 260px;
  color: var(--muted);
  font-size: 0.82rem;
}

@media (max-height: 850px) and (min-width: 921px) {
  .mail-mockup,
  .campaign-mockup {
    min-height: 112px;
  }

  .email-feature-card {
    min-height: 430px;
    padding-bottom: 145px;
  }
}

.email-feature-card li::before {
  content: "\2713";
}

.feature-section {
  position: relative;
  overflow: hidden;
  background: white;
  color: var(--ink);
}

.feature-section::before {
  content: none;
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(151, 211, 219, 0.15);
  pointer-events: none;
}

.feature-section .section-title {
  position: relative;
  z-index: 1;
  align-items: stretch;
  margin-bottom: clamp(26px, 4vw, 42px);
}

.feature-section .eyebrow {
  background: #e3f6f3;
  color: var(--teal);
}

.feature-section .section-title h2 {
  max-width: 920px;
  color: var(--ink);
}

.feature-section .section-title p {
  max-width: 720px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.65;
}

.operations-score {
  display: grid;
  align-content: center;
  width: min(100%, 310px);
  padding: 22px;
  border-left: 3px solid var(--teal-2);
  background: #f3f8f9;
}

.operations-score strong {
  color: var(--ink);
  font-size: clamp(2.4rem, 4vw, 4.1rem);
  line-height: 0.95;
}

.operations-score span {
  margin-top: 10px;
  color: var(--muted);
  line-height: 1.5;
}

.feature-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.feature-grid article {
  position: relative;
  min-height: 230px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fbfdfd;
  padding: 24px;
}

.feature-grid article::after {
  content: "";
  position: absolute;
  right: -36px;
  bottom: -36px;
  width: 112px;
  height: 112px;
  border: 1px solid rgba(13, 143, 141, 0.14);
  border-radius: 50%;
}

.feature-grid article > span {
  display: block;
  margin-bottom: 26px;
  color: #9aa8b8;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
}

.feature-grid svg {
  width: 34px;
  height: 34px;
  color: var(--teal);
}

.feature-grid h3 {
  margin: 24px 0 10px;
  color: var(--ink);
  font-size: 1.12rem;
}

.feature-grid p,
.migration-section p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.feature-grid p {
  color: var(--muted);
}

.operations-apps {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.operations-apps-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}

.operations-apps-head h3 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.25rem, 2vw, 1.7rem);
}

.feature-section .apps-grid {
  grid-template-columns: repeat(5, minmax(150px, 1fr));
  gap: 12px;
}

.feature-section .app-item {
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 12px;
  min-height: 92px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fbfdfd;
}

.feature-section .app-item > span {
  width: 48px;
  height: 48px;
  border-radius: 6px;
  box-shadow: none;
}

.feature-section .app-icon img {
  width: 34px;
  height: 34px;
}

.feature-section .app-item h3 {
  margin: 0 0 4px;
  font-size: 0.98rem;
}

.feature-section .app-item p {
  font-size: 0.78rem;
  line-height: 1.35;
}

.panel-preview-section,
.page-section {
  padding: clamp(48px, 6vw, 78px) clamp(22px, 6vw, 82px);
}

.construction-template {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(280px, 0.72fr);
  gap: clamp(24px, 5vw, 68px);
  align-items: center;
  min-height: 520px;
  background: #f3f5f7;
}

.construction-template img {
  display: block;
  width: 100%;
  max-height: 520px;
  object-fit: contain;
}

.construction-template h2 {
  margin: 14px 0 0;
  max-width: 620px;
  color: #5c6b78;
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1.1;
  letter-spacing: 0;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.85), 0 2px 3px rgba(92, 107, 120, 0.18);
}

.construction-template p {
  max-width: 560px;
  margin: 18px 0 26px;
  color: #5c6b78;
  font-size: 1.08rem;
  line-height: 1.55;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.7);
}

.cms-page {
  --cms-line: rgba(92, 107, 120, 0.14);
  --cms-shadow: 0 18px 44px rgba(29, 45, 60, 0.08);
  --cms-shadow-strong: 0 30px 80px rgba(29, 45, 60, 0.13);
  --cms-surface: rgba(255, 255, 255, 0.86);
  background: #f6f7f9;
  color: #102033;
}

.cms-page .eyebrow {
  background: #dff4f2;
  color: #0d8f8d;
}

.cms-hero,
.cms-section,
.cms-compare-cta {
  padding: clamp(42px, 6vw, 70px) clamp(22px, 6vw, 82px);
}

.cms-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(420px, 1.1fr);
  gap: clamp(28px, 6vw, 82px);
  align-items: center;
  min-height: 520px;
  border-bottom: 1px solid var(--cms-line);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.7), rgba(246, 247, 249, 0)),
    #f6f7f9;
  overflow: hidden;
}

.cms-hero h1 {
  max-width: 620px;
  margin: 16px 0 18px;
  font-size: clamp(2.4rem, 5vw, 4.1rem);
  line-height: 1.12;
  letter-spacing: 0;
}

.cms-hero p,
.cms-section-head p,
.cms-template-card p,
.cms-card-grid p,
.cms-install-row span,
.cms-final-card p,
.cms-admin-list span {
  color: #5c6b78;
  line-height: 1.55;
}

.cms-hero-copy > p {
  max-width: 620px;
  font-size: 1.08rem;
}

.cms-hero-image,
.cms-admin-image,
.cms-final-card img {
  display: block;
  width: 100%;
  height: auto;
}

.cms-hero-image {
  justify-self: end;
  max-width: 760px;
  filter: drop-shadow(0 28px 34px rgba(53, 72, 88, 0.13));
}

.cms-admin-preview {
  position: relative;
  overflow: hidden;
  margin-top: 168px;
  max-height: clamp(360px, 38vw, 560px);
  border: 0;
  border-radius: 8px;
  background: var(--cms-dashboard-bg, #f6f7f9);
  box-shadow: none;
}

.cms-admin-preview::before {
  content: none;
}

.cms-admin-preview::after {
  content: none;
}

.cms-admin-image {
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.cms-benefit-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 0;
  margin-top: 34px;
}

.cms-admin-list article,
.cms-template-card,
.cms-final-card,
.cms-compare-table {
  border: 1px solid rgba(92, 107, 120, 0.16);
  border-radius: 7px;
  background: var(--cms-surface);
  box-shadow: var(--cms-shadow);
}

.cms-benefit-strip article {
  display: grid;
  gap: 5px;
  min-width: 142px;
  padding: 2px 24px;
  border: 0;
  border-left: 1px solid rgba(92, 107, 120, 0.24);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.cms-benefit-strip article:first-child {
  padding-left: 0;
  border-left: 0;
}

.cms-template-card:hover,
.cms-card-grid article:hover {
  transform: translateY(-2px);
}

.cms-card-grid svg,
.cms-install-row svg,
.cms-admin-list svg {
  width: 42px;
  height: 42px;
  padding: 10px;
  border: 1px solid rgba(18, 151, 146, 0.26);
  border-radius: 6px;
  background: #f8fbfc;
  color: var(--teal);
  box-shadow: 0 7px 16px rgba(32, 50, 68, 0.09);
}

.cms-benefit-strip strong,
.cms-template-card h3,
.cms-card-grid h3,
.cms-install-row strong,
.cms-admin-list strong {
  color: #102033;
}

.cms-benefit-strip strong {
  color: #102033;
  font-size: 0.92rem;
  line-height: 1.25;
  text-shadow: none;
}

.cms-benefit-strip span {
  color: #5c6b78;
  font-size: 0.78rem;
  line-height: 1.45;
  text-shadow: none;
}

.cms-section {
  border-top: 1px solid rgba(92, 107, 120, 0.12);
}

.cms-template-section {
  background: #000c1d;
  border-top: 0;
}

.cms-template-section .cms-section-head h2 {
  color: #fff;
}

.cms-template-section .cms-section-head p {
  color: rgba(255, 255, 255, 0.72);
}

.cms-template-section .cms-template-card {
  border-color: rgba(39, 217, 242, 0.18);
  background: #fff;
}

.cms-section-head {
  margin-bottom: 26px;
}

.cms-section-head span {
  display: none;
}

.cms-section-head h2 {
  display: block;
  margin: 0;
  font-size: clamp(1.35rem, 2.3vw, 1.9rem);
  line-height: 1.2;
}

.cms-section-head p {
  max-width: 640px;
  margin: 10px 0 0;
}

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

.cms-template-card {
  overflow: hidden;
  padding-bottom: 16px;
  color: inherit;
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.cms-template-shot {
  position: relative;
  display: grid;
  place-items: center;
  aspect-ratio: 1.45;
  background: #eef4f7;
  border-bottom: 1px solid rgba(92, 107, 120, 0.12);
  overflow: hidden;
}

.cms-template-shot::before {
  content: "Vista previa";
  position: absolute;
  left: 10px;
  top: 10px;
  z-index: 2;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  color: #102033;
  padding: 5px 9px;
  font-size: 0.72rem;
  box-shadow: 0 8px 18px rgba(29, 45, 60, 0.12);
}

.cms-template-shot::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  z-index: 1;
  height: 42%;
  background: linear-gradient(180deg, transparent, rgba(0, 12, 29, 0.2));
  pointer-events: none;
}

.cms-template-shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 220ms ease;
}

.cms-template-card:hover .cms-template-shot img {
  transform: scale(1.04);
}

.cms-template-card h3,
.cms-template-card p {
  margin-inline: 14px;
}

.cms-template-card h3 {
  margin-top: 14px;
  margin-bottom: 4px;
  font-size: 0.98rem;
}

.cms-template-card p {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 0.82rem;
}

.cms-template-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin: 12px 14px 0;
  color: var(--teal);
  font-size: 0.82rem;
  font-weight: 700;
}

.cms-template-link svg {
  width: 14px;
  height: 14px;
}

.cms-centered {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}

.cms-centered .ghost-button,
.cms-final-card .ghost-button {
  min-height: 40px;
  background: white;
  color: var(--teal);
}

.cms-admin-section {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: clamp(28px, 5vw, 58px);
  align-items: start;
  padding-bottom: 0;
  background: var(--cms-dashboard-bg, #f6f7f9);
}

.cms-admin-list {
  display: grid;
  gap: 16px;
}

.cms-admin-list {
  gap: 0;
  border-top: 1px solid var(--cms-line);
}

.cms-admin-list article {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 12px;
  align-items: start;
  padding: 15px 0;
  border: 0;
  border-bottom: 1px solid var(--cms-line);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.cms-admin-list article svg {
  width: 34px;
  height: 34px;
  padding: 8px;
  border-radius: 6px;
  box-shadow: none;
}

.cms-admin-list article div {
  display: grid;
  gap: 4px;
}

.cms-admin-list strong {
  display: block;
  line-height: 1.25;
}

.cms-admin-list span {
  display: block;
  font-size: 0.88rem;
}

.cms-card-grid article {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  justify-items: start;
  gap: 8px 16px;
  min-height: 0;
  padding: 8px 10px;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  text-align: left;
  transition: transform 160ms ease;
}

.cms-card-grid h3,
.cms-card-grid p {
  margin: 0;
}

.cms-card-grid p {
  grid-column: 2;
  font-size: 0.86rem;
}

.cms-card-grid h3 {
  align-self: end;
  font-size: 1rem;
}

.cms-card-grid svg {
  grid-row: span 2;
  align-self: start;
  border: 0;
  border-radius: 10px;
  background: rgba(18, 151, 146, 0.1);
  box-shadow: none;
}

.cms-install-row {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 22px;
  overflow: hidden;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.cms-install-row article {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 8px 15px;
  align-items: start;
  min-height: 0;
  padding: 8px 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.cms-install-row article:first-child {
  border-radius: 0;
}

.cms-install-row article:last-child {
  border-right: 0;
  border-radius: 0;
}

.cms-install-row svg {
  grid-row: span 2;
  width: 44px;
  height: 44px;
  padding: 9px;
  border: 0;
  border-radius: 10px;
  background: rgba(18, 151, 146, 0.1);
  box-shadow: none;
}

.cms-install-row strong {
  align-self: end;
  font-size: 0.94rem;
  line-height: 1.25;
}

.cms-install-row span {
  max-width: 220px;
  font-size: 0.82rem;
  line-height: 1.5;
}

.cms-compare-cta {
  display: grid;
  grid-template-columns: minmax(320px, 1fr) minmax(320px, 1fr);
  gap: 42px;
  align-items: stretch;
  border-top: 1px solid rgba(92, 107, 120, 0.12);
  background: linear-gradient(180deg, #f6f7f9, #f1f4f6);
}

.cms-compare-table {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  background: white;
}

.cms-compare-table th,
.cms-compare-table td {
  padding: 16px 22px;
  border-bottom: 1px solid rgba(92, 107, 120, 0.12);
  text-align: left;
  font-size: 0.93rem;
}

.cms-compare-table th {
  color: #102033;
}

.cms-compare-table span {
  color: #102033;
}

.cms-compare-table i {
  color: #9aa8b4;
  font-style: normal;
}

.cms-rating {
  display: inline-flex;
  gap: 5px;
  align-items: center;
}

.cms-rating b,
.cms-rating i {
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 999px;
}

.cms-rating b {
  background: var(--teal);
  box-shadow: 0 0 0 3px rgba(18, 151, 146, 0.12);
}

.cms-rating i {
  background: #cbd5dc;
}

.cms-final-card {
  display: grid;
  grid-template-columns: minmax(180px, 0.72fr) 1fr;
  gap: 28px;
  align-items: center;
  padding: 34px;
  background: white;
}

.cms-final-card img {
  max-height: 240px;
  object-fit: contain;
}

.cms-final-card h2 {
  margin: 0 0 12px;
  font-size: clamp(1.5rem, 2.6vw, 2.2rem);
}

.cms-final-card p {
  margin: 0 0 22px;
}

.cms-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
  color: var(--teal);
  text-decoration: none;
}

.panel-preview-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.42fr) minmax(560px, 1fr);
  gap: 42px;
  align-items: center;
  background: white;
}

.eyebrow,
.badge,
.status-pill {
  display: inline-flex;
  width: max-content;
  min-height: 26px;
  align-items: center;
  border-radius: 3px;
  background: #e3f6f3;
  color: #047857;
  padding: 0 9px;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
}

.panel-preview-copy h2,
.section-title h2,
.page-hero h1 {
  margin: 14px 0 0;
  font-size: clamp(2rem, 3.6vw, 3.2rem);
  line-height: 1.16;
  letter-spacing: 0;
}

.panel-preview-image {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 3px;
}

.migration-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background:
    radial-gradient(circle at 78% 34%, rgba(39, 217, 242, 0.18), transparent 28%),
    #000c1d;
  color: white;
}

.migration-section > div {
  max-width: 760px;
}

.dash-card span,
.plan-card span,
.service-card p,
.demo-card p,
.section-title p,
.page-hero p {
  color: var(--muted);
}

.site-footer {
  border-top: 1px solid rgba(148, 163, 184, 0.2);
  display: block;
  padding: 0;
  background: #010c1d;
  color: #a8b3c4;
}

.footer-brand {
  color: white;
}

.footer-brand img {
  width: 260px;
  max-width: 100%;
  height: auto;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.2fr 1fr 0.9fr 1.1fr;
  gap: clamp(28px, 5vw, 74px);
  padding: 58px clamp(22px, 6vw, 82px) 42px;
}

.footer-col {
  display: grid;
  align-content: start;
  gap: 10px;
}

.footer-col h2 {
  margin: 0 0 8px;
  color: white;
  font-size: 0.98rem;
  font-weight: 600;
}

.footer-col p,
.footer-col a,
.footer-bottom {
  margin: 0;
  color: #7f8da0;
  font-size: 0.82rem;
  line-height: 1.65;
}

.footer-links a {
  width: max-content;
  text-decoration: none;
}

.footer-links a:hover,
.footer-bottom a:hover {
  color: var(--teal-2);
}

.footer-about .footer-brand {
  margin-top: 8px;
}

.footer-newsletter {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 48px;
  min-height: 42px;
  margin-top: 6px;
  border: 1px solid rgba(39, 217, 242, 0.18);
  border-radius: 999px;
  background: white;
  overflow: hidden;
}

.footer-newsletter input {
  min-width: 0;
  border: 0;
  padding: 0 16px;
  font: inherit;
  color: var(--ink);
  outline: 0;
}

.footer-newsletter button {
  display: grid;
  place-items: center;
  border: 0;
  background: var(--teal);
  color: white;
  cursor: pointer;
}

.footer-newsletter-notice {
  margin: 0 0 10px;
  color: #bbf7d0;
  font-weight: 700;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 15px clamp(22px, 6vw, 82px);
  border-top: 1px solid rgba(148, 163, 184, 0.16);
  background: rgba(0, 0, 0, 0.18);
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 18px;
}

.footer-social a {
  color: #cbd5e1;
  text-decoration: none;
}

.page-hero {
  background: var(--navy);
  color: white;
}

.page-hero p {
  max-width: 680px;
  line-height: 1.6;
}

.legal-page {
  display: grid;
  gap: 18px;
  max-width: 960px;
}

.legal-jump-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding-bottom: 8px;
}

.legal-jump-nav a {
  border: 1px solid var(--line);
  background: white;
  color: var(--ink);
  padding: 8px 12px;
  text-decoration: none;
  font-weight: 700;
  font-size: .9rem;
}

.legal-page article {
  padding: 22px 0;
  border-top: 1px solid rgba(92, 107, 120, 0.18);
  scroll-margin-top: 110px;
}

.legal-page article:first-child {
  padding-top: 0;
  border-top: 0;
}

.legal-page h2 {
  margin: 0 0 14px;
  color: var(--ink);
  font-size: 1.18rem;
  line-height: 1.25;
}

.legal-page h3 {
  margin: 18px 0 6px;
  color: var(--ink);
  font-size: 1rem;
}

.legal-page p {
  max-width: 820px;
  margin: 0 0 10px;
  color: var(--muted);
  line-height: 1.7;
}

.legal-page ul {
  display: grid;
  gap: 7px;
  max-width: 820px;
  margin: 0 0 10px;
  padding-left: 20px;
  color: var(--muted);
  line-height: 1.55;
}

.hosting-hero {
  display: grid;
  gap: 34px;
  min-height: 290px;
  padding: 42px clamp(22px, 6vw, 82px) 0;
  background: linear-gradient(135deg, #061827, #0a2a38);
  color: white;
  text-align: center;
}

.hosting-breadcrumb {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-bottom: 18px;
  color: #a9bdc8;
  font-size: 0.86rem;
}

.hosting-breadcrumb a,
.hosting-breadcrumb strong {
  color: #36ddd7;
  text-decoration: none;
}

.hosting-breadcrumb span::before,
.hosting-breadcrumb strong::before {
  content: ">";
  margin-right: 9px;
  color: #6f8492;
}

.hosting-hero h1 {
  max-width: 820px;
  margin-inline: auto;
  margin: 0;
  font-size: clamp(2.3rem, 4vw, 3.9rem);
  font-weight: 800;
  line-height: 1.05;
  text-transform: uppercase;
}

.hosting-hero p {
  margin: 16px 0 0;
  color: #c6d3dc;
  font-size: 1.1rem;
}

.hosting-flow {
  padding: 34px clamp(22px, 6vw, 82px) clamp(54px, 7vw, 92px);
  background: #f4f7fa;
}

.hosting-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  width: min(980px, 100%);
  margin: 0 auto;
  padding: 18px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  text-align: left;
}

.hosting-steps span {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #728293;
  font-weight: 600;
}

.hosting-steps span::after {
  content: "";
  height: 1px;
  flex: 1;
  background: rgba(255, 255, 255, 0.15);
}

.hosting-steps span:last-child::after {
  content: none;
}

.hosting-steps b {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #263746;
  color: #c6d3dc;
}

.hosting-steps .is-active {
  color: white;
}

.hosting-steps .is-active b {
  background: var(--teal);
  color: white;
}

.hosting-config-card {
  max-width: 980px;
  margin: 0 auto 28px;
  border: 1px solid var(--line);
  border-radius: 9px;
  background: white;
  box-shadow: 0 18px 48px rgba(5, 18, 28, 0.1);
  overflow: hidden;
}

.hosting-config-head {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  padding: 32px 34px 20px;
}

.hosting-config-head > span {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 8px;
  background: #e3f6f3;
  color: var(--teal);
}

.hosting-config-head svg {
  width: 25px;
  height: 25px;
}

.hosting-config-head h2 {
  margin: 0;
  font-size: 1.65rem;
}

.hosting-config-head p {
  margin: 6px 0 0;
  color: var(--muted);
}

.hosting-select-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 36px;
  padding: 0 34px 26px;
}

.hosting-select-grid h3 {
  margin: 0 0 10px;
  font-size: 0.9rem;
}

.hosting-select-box {
  border: 1px solid #cdd9e5;
  border-radius: 7px;
  background: white;
  overflow: hidden;
  box-shadow: 0 12px 26px rgba(5, 18, 28, 0.06);
}

.hosting-select-box strong,
.hosting-select-box button {
  display: flex;
  width: 100%;
  min-height: 44px;
  align-items: center;
  gap: 10px;
  border: 0;
  background: white;
  padding: 0 14px;
  color: #44576a;
  font: inherit;
  text-align: left;
}

.hosting-select-box strong {
  border-bottom: 1px solid #edf2f7;
}

.hosting-select-box strong svg:last-child {
  margin-left: auto;
}

.hosting-select-box button:hover,
.hosting-select-box .is-selected {
  background: #f1f7fb;
  color: var(--ink);
}

.hosting-select-box .is-selected svg {
  margin-left: auto;
  color: var(--teal);
}

.hosting-config-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 34px;
  border-top: 1px solid var(--line);
}

.hosting-config-actions span {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  gap: 9px;
  border: 1px solid var(--teal);
  border-radius: 6px;
  padding: 0 16px;
}

.hosting-config-actions span svg {
  color: var(--teal);
}

.hosting-plan-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(220px, 1fr));
  gap: 16px;
  max-width: 980px;
  margin: 0 auto;
}

.hosting-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: center;
  min-height: 360px;
  padding: 42px clamp(22px, 6vw, 82px);
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(3, 16, 29, 0.72), rgba(3, 16, 29, 0.08) 62%),
    url("hosting-banner.png") center / cover no-repeat,
    #03101d;
  color: white;
  text-align: left;
}

.hosting-hero-copy {
  position: relative;
  z-index: 1;
}

.hosting-hero h1 {
  max-width: 650px;
  margin: 0;
  font-size: clamp(2.5rem, 4.3vw, 4.3rem);
  font-weight: 850;
  line-height: 1.05;
  text-transform: none;
}

.hosting-hero h1 span {
  color: var(--teal);
}

.hosting-hero p {
  margin: 14px 0 0;
  color: #c7d7df;
  font-size: 1.05rem;
  line-height: 1.5;
}

.hosting-art {
  display: none;
}

.hosting-art .cloud {
  position: absolute;
  top: 6px;
  right: 28px;
  width: 140px;
  height: 70px;
  border: 2px solid #13d6d2;
  border-radius: 60px 60px 38px 38px;
  box-shadow: 0 0 24px rgba(19, 214, 210, 0.45);
}

.hosting-art .cloud::before,
.hosting-art .cloud::after {
  content: "";
  position: absolute;
  bottom: 28px;
  border: 2px solid #13d6d2;
  border-bottom: 0;
  border-radius: 50% 50% 0 0;
  background: #082838;
}

.hosting-art .cloud::before {
  left: 22px;
  width: 54px;
  height: 54px;
}

.hosting-art .cloud::after {
  right: 18px;
  width: 64px;
  height: 64px;
}

.server-stack {
  position: absolute;
  right: 96px;
  bottom: 22px;
  display: grid;
  gap: 8px;
  width: 120px;
  transform: skewY(8deg);
}

.server-stack i {
  display: block;
  height: 42px;
  border: 1px solid rgba(39, 217, 242, 0.68);
  border-radius: 4px;
  background: linear-gradient(90deg, rgba(8, 34, 49, 0.98), rgba(13, 64, 78, 0.96));
  box-shadow: 0 0 22px rgba(24, 224, 218, 0.22);
}

.server-stack i::after {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  margin: 17px 16px 0 auto;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 12px var(--teal);
}

.hosting-art .laptop {
  position: absolute;
  left: 22px;
  bottom: 30px;
  width: 118px;
  height: 72px;
  border: 1px solid rgba(39, 217, 242, 0.7);
  transform: skewY(8deg);
}

.hosting-art .laptop::after {
  content: "";
  position: absolute;
  left: 18px;
  bottom: 20px;
  width: 42px;
  height: 28px;
  border: 2px solid #13d6d2;
  border-radius: 18px;
}

.hosting-art .shield {
  position: absolute;
  right: 20px;
  bottom: 24px;
  width: 70px;
  height: 86px;
  clip-path: polygon(50% 0, 94% 18%, 84% 76%, 50% 100%, 16% 76%, 6% 18%);
  background: linear-gradient(160deg, rgba(39, 217, 242, 0.45), rgba(20, 184, 166, 0.12));
  border: 1px solid rgba(39, 217, 242, 0.8);
  box-shadow: 0 0 24px rgba(24, 224, 218, 0.28);
}

.hosting-comparison {
  padding: 36px clamp(18px, 4vw, 56px) clamp(54px, 7vw, 92px);
  background: #f5f7fa;
}

.hosting-section-head {
  display: grid;
  gap: 10px;
  max-width: 1320px;
  margin: 0 auto 18px;
  padding: 8px 0 2px;
  border-left: 0;
  overflow: visible;
}

.hosting-section-head > span {
  margin: 0;
}

.hosting-section-head h2 {
  margin: 0;
  padding: 0;
  line-height: 1.16;
}

.hosting-table {
  max-width: 1320px;
  min-width: 900px;
  margin: 0 auto;
  overflow: visible;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  box-shadow: 0 18px 48px rgba(5, 18, 28, 0.1);
}

.hosting-table-head,
.hosting-table-row {
  display: grid;
  grid-template-columns: 0.95fr repeat(3, 1fr);
}

.hosting-table-head > strong {
  display: flex;
  align-items: center;
  padding: 32px 22px 32px 32px;
  font-size: 1.1rem;
}

.hosting-table-head article {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 9px;
  padding: 24px 22px 20px;
  border-left: 1px solid var(--line);
  text-align: center;
}

.hosting-table-head article.is-featured {
  margin-top: -1px;
  border: 1px solid var(--teal);
  border-bottom: 0;
  background: linear-gradient(180deg, rgba(20, 184, 166, 0.04), transparent);
}

.hosting-ribbon {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 28px;
  padding: 0 14px;
  border-radius: 6px;
  background: var(--teal);
  color: white;
  font-size: 0.76rem;
  font-weight: 850;
  text-transform: uppercase;
  white-space: nowrap;
}

.hosting-table h2,
.hosting-table p {
  margin: 0;
}

.hosting-table h2 {
  font-size: 1.05rem;
}

.hosting-table p {
  color: #667085;
  font-size: 0.78rem;
  font-weight: 400;
}

.hosting-table-head div {
  display: inline-flex;
  align-items: flex-end;
  gap: 5px;
}

.hosting-table-head b {
  color: #07142a;
  font-size: 1.9rem;
  line-height: 0.95;
}

.hosting-table-head small {
  color: #34465b;
  font-weight: 800;
  line-height: 1.05;
}

.hosting-table .button {
  margin-top: 8px;
  min-height: 34px;
  min-width: 150px;
  border-color: transparent;
  background: var(--teal);
  color: white;
  font-size: 0.82rem;
}

.hosting-table .button svg {
  width: 15px;
  height: 15px;
  margin-left: 8px;
}

.hosting-table-row {
  min-height: 32px;
  border-top: 1px solid var(--line);
}

.hosting-table-row > * {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 7px 14px;
  border-left: 1px solid var(--line);
  color: #172033;
  font-size: 0.9rem;
  font-weight: 500;
  text-align: center;
}

.hosting-table-row > span {
  justify-content: flex-start;
  gap: 12px;
  padding-left: 30px;
  border-left: 0;
  font-weight: 650;
  text-align: left;
}

.hosting-table-row svg {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  margin-right: 0;
  color: var(--teal);
}

.hosting-table-row b svg {
  margin-right: 0;
}

.list-check {
  display: inline-block;
  width: 22px;
  height: 22px;
  object-fit: contain;
  vertical-align: middle;
}

.hosting-cart-row {
  min-height: 68px;
  background: #fbfdfd;
}

.hosting-cart-row > * {
  padding-block: 14px;
}

.hosting-cart-row .button {
  margin-top: 0;
}

.hosting-extra {
  padding: 12px clamp(18px, 4vw, 56px);
  background: #f5f7fa;
}

.hosting-extra-head {
  max-width: 1320px;
  margin: 0 auto 12px;
}

.hosting-extra-head span,
.hosting-kora-card > div:first-child > span {
  display: inline-flex;
  margin-bottom: 10px;
  color: var(--teal);
  font-size: 0.82rem;
  font-weight: 850;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hosting-extra-head h2,
.hosting-kora-card h2,
.hosting-final-cta h2 {
  margin: 0;
  color: #07142a;
  font-size: clamp(1.25rem, 2.1vw, 2rem);
  line-height: 1.08;
}

.hosting-extra-head h2 span {
  color: var(--teal);
  font: inherit;
  letter-spacing: 0;
  text-transform: none;
}

.hosting-benefit-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  max-width: 1320px;
  margin: 0 auto;
}

.hosting-benefit-grid article {
  display: grid;
  grid-template-columns: 62px minmax(0, 1fr);
  align-items: center;
  gap: 14px;
  min-height: 126px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  padding: 18px;
  box-shadow: 0 12px 30px rgba(5, 18, 28, 0.06);
}

.hosting-benefit-grid img {
  display: block;
  width: 62px;
  height: 62px;
  object-fit: contain;
  object-position: center;
}

.hosting-benefit-grid h3 {
  margin: 0 0 8px;
  color: #07142a;
  font-size: 0.95rem;
}

.hosting-benefit-grid p,
.hosting-kora-card p,
.hosting-faq details p,
.hosting-final-cta p {
  margin: 0;
  color: #5b677a;
  font-size: 0.86rem;
  line-height: 1.45;
}

.hosting-benefit-grid p {
  max-width: 100%;
}

.hosting-kora-card,
.hosting-final-cta {
  max-width: 1320px;
  margin: 0 auto;
  border: 1px solid #dbe7ee;
  border-radius: 8px;
  background: white;
  color: #07142a;
  box-shadow: 0 12px 32px rgba(5, 18, 28, 0.06);
}

.hosting-kora-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  gap: 28px;
  align-items: center;
  min-height: 170px;
  padding: 24px 34px;
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 50%, rgba(20, 184, 166, 0.14), transparent 30%),
    linear-gradient(120deg, #f3fffd, #e9fbfb);
}

.hosting-kora-card h2 {
  color: #07142a;
}

.hosting-kora-card p {
  max-width: 600px;
  margin: 10px 0 16px;
  color: #5b677a;
  font-size: 0.9rem;
}

.hosting-kora-card .button,
.hosting-final-cta .button {
  border-color: transparent;
  background: var(--teal);
  color: white;
}

.hosting-kora-avatar {
  position: relative;
  display: grid;
  place-items: center;
  width: min(250px, 100%);
  aspect-ratio: 1;
  justify-self: center;
  border: 1px solid rgba(20, 184, 166, 0.22);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.58);
  box-shadow: inset 0 0 35px rgba(20, 184, 166, 0.08), 0 0 28px rgba(20, 184, 166, 0.1);
}

.hosting-kora-avatar b {
  position: relative;
  z-index: 2;
  display: grid;
  place-items: start center;
  width: 116px;
  height: 116px;
  border: 12px solid #edf5f7;
  border-radius: 50%;
  background:
    radial-gradient(circle at 34% 48%, #27d9f2 0 8px, transparent 9px),
    radial-gradient(circle at 66% 48%, #27d9f2 0 8px, transparent 9px),
    radial-gradient(circle at 50% 68%, transparent 0 12px, #27d9f2 13px 15px, transparent 16px),
    #07142a;
  color: white;
  padding-top: 18px;
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  box-shadow: 0 16px 30px rgba(5, 18, 28, 0.18);
}

.hosting-kora-avatar i {
  position: absolute;
  border: 1px solid rgba(39, 217, 242, 0.28);
  border-radius: 50%;
}

.hosting-kora-avatar i:nth-of-type(1) {
  inset: 22px;
}

.hosting-kora-avatar i:nth-of-type(2) {
  inset: 58px;
}

.hosting-kora-avatar i:nth-of-type(3) {
  width: 142px;
  height: 142px;
  inset: 54px;
  background: rgba(20, 184, 166, 0.08);
}

.kora-bubble {
  position: absolute;
  z-index: 3;
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border: 1px solid #dbe7ee;
  border-radius: 50%;
  background: white;
  color: var(--teal);
  box-shadow: 0 12px 28px rgba(5, 18, 28, 0.08);
  font-weight: 900;
}

.kora-bubble svg {
  width: 24px;
  height: 24px;
}

.kora-bubble-help {
  left: -2px;
  top: 52px;
  font-size: 2rem;
}

.kora-bubble-server {
  right: -8px;
  top: 48px;
}

.kora-bubble-mail {
  right: 20px;
  bottom: 22px;
}

.hosting-faq-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 6px;
  max-width: 1320px;
  margin: 0 auto;
}

.hosting-faq details {
  border: 1px solid var(--line);
  border-radius: 4px;
  background: white;
  box-shadow: none;
}

.hosting-faq summary {
  cursor: pointer;
  padding: 10px 14px;
  color: #07142a;
  font-weight: 800;
  font-size: 0.9rem;
}

.hosting-faq details p {
  padding: 0 14px 12px;
}

.hosting-final-cta {
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr) 260px;
  align-items: center;
  gap: 34px;
  padding: 18px 42px;
}

.hosting-cta-image {
  display: block;
  width: 280px;
  max-width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: contain;
  object-position: left center;
}

.hosting-final-cta h2 {
  color: #07142a;
}

.hosting-final-cta p {
  margin-top: 8px;
  color: #5b677a;
}

.hosting-final-cta .button {
  margin-top: 18px;
}

.hosting-final-cta ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0 0 0 42px;
  border-left: 1px solid var(--line);
  list-style: none;
  color: #07142a;
  font-size: 0.9rem;
  font-weight: 700;
}

.hosting-final-cta li {
  display: flex;
  align-items: center;
  gap: 8px;
}

.hosting-final-cta li img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.hosting-final-cta li .list-check {
  width: 22px;
  height: 22px;
}

.hosting-panel {
  max-width: 1320px;
  margin: 0 auto;
  border: 1px solid #dbe7ee;
  border-radius: 8px;
  background: white;
  box-shadow: 0 12px 32px rgba(5, 18, 28, 0.06);
}

.hosting-extra-head.is-centered {
  display: grid;
  justify-items: center;
  max-width: none;
  margin: 0 0 20px;
  padding: 26px 22px 0;
  border-left: 0;
  text-align: center;
}

.hosting-extra-head.is-centered::after {
  content: "";
  width: 42px;
  height: 2px;
  margin-top: 14px;
  background: var(--teal);
}

.hosting-mini-benefits {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 16px;
  padding: 0 22px 26px;
}

.hosting-mini-benefits article {
  display: grid;
  justify-items: center;
  gap: 10px;
  min-height: 168px;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 18px 12px;
  text-align: center;
}

.hosting-mini-benefits img {
  display: block;
  width: 74px;
  height: 74px;
  object-fit: contain;
}

.hosting-mini-benefits h3,
.hosting-guarantee-grid h3,
.hosting-custom-cta h2 {
  margin: 0;
  color: #07142a;
}

.hosting-mini-benefits h3 {
  font-size: 0.92rem;
}

.hosting-mini-benefits p,
.hosting-performance-grid p,
.hosting-performance-grid li,
.hosting-guarantee-grid p,
.hosting-custom-cta p {
  margin: 0;
  color: #5b677a;
  font-size: 0.88rem;
  line-height: 1.5;
}

.hosting-performance-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.95fr);
  align-items: center;
  overflow: hidden;
}

.hosting-performance-grid > img {
  display: block;
  width: 100%;
  height: 315px;
  object-fit: contain;
  object-position: center;
  background: white;
}

.hosting-performance-grid > div {
  padding: clamp(26px, 4vw, 54px);
}

.hosting-performance-grid h2 {
  margin: 0 0 14px;
  color: #07142a;
  font-size: clamp(1.65rem, 2.7vw, 2.45rem);
}

.hosting-performance-grid ul {
  display: grid;
  gap: 12px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.hosting-performance-grid li {
  display: flex;
  align-items: center;
  gap: 10px;
}

.hosting-performance-grid li .list-check {
  width: 18px;
  height: 18px;
}

.hosting-guarantee-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  padding: 0 28px 28px;
}

.hosting-guarantee-grid article {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  align-items: center;
  gap: 14px;
}

.hosting-guarantee-grid img {
  display: block;
  width: 72px;
  height: 72px;
  object-fit: contain;
}

.hosting-guarantee-grid h3 {
  margin-bottom: 7px;
  font-size: 0.96rem;
}

.hosting-custom-cta .hosting-panel {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  padding: 18px 32px;
  background: linear-gradient(90deg, #f1fffc, #eafafa);
}

.hosting-custom-cta span {
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  border: 1px solid rgba(20, 184, 166, 0.28);
  border-radius: 50%;
  background: white;
  color: var(--teal);
}

.hosting-custom-cta svg {
  width: 26px;
  height: 26px;
}

.hosting-custom-cta h2 {
  margin-bottom: 6px;
  font-size: 1.25rem;
}

@media (max-width: 920px) {
  .hosting-comparison {
    overflow-x: auto;
  }

  .hosting-art {
    display: none;
  }

  .hosting-benefit-grid,
  .hosting-kora-card,
  .hosting-faq-list,
  .hosting-performance-grid,
  .hosting-guarantee-grid,
  .hosting-custom-cta .hosting-panel {
    grid-template-columns: 1fr;
  }

  .hosting-mini-benefits {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hosting-kora-avatar {
    justify-self: center;
  }

  .hosting-final-cta {
    grid-template-columns: 1fr;
  }
}

.section-title {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 22px;
}

.service-grid,
.plan-grid,
.demo-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.service-card,
.plan-card,
.demo-card,
.contact-card,
.kora-card {
  border: 1px solid var(--line);
  border-radius: 3px;
  background: white;
}

.service-card,
.plan-card,
.contact-card {
  padding: 20px;
}

.service-card svg {
  color: var(--teal);
}

.service-card h3,
.plan-card h3,
.demo-card h3 {
  margin: 16px 0 8px;
}

.plan-card strong {
  display: block;
  margin: 14px 0 16px;
  font-size: 2rem;
}

.plan-card ul {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: #334155;
}

.plan-options li {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 0.95rem;
}

.plan-options i {
  width: 16px;
  height: 16px;
  border: 1px solid #cbd5e1;
  border-radius: 50%;
  background: white;
  flex: 0 0 auto;
}

.plan-options li:first-child i {
  border-color: var(--teal);
  box-shadow: inset 0 0 0 4px white;
  background: var(--teal);
}

.home-plans .plan-options li:first-child i {
  border-color: transparent;
  background: var(--plan-accent);
  box-shadow: none;
}

.demo-card {
  overflow: hidden;
}

.demo-card img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-bottom: 1px solid var(--line);
}

.demo-card div {
  padding: 16px;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.75fr);
  gap: 22px;
  align-items: start;
}

.form-grid {
  display: grid;
  gap: 14px;
}

.form-grid label {
  display: grid;
  gap: 7px;
  color: #334155;
  font-size: 0.92rem;
  font-weight: 400;
}

.form-grid input,
.form-grid select,
.form-grid textarea {
  width: 100%;
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: 3px;
  padding: 0 12px;
  color: var(--ink);
  font: inherit;
}

.form-grid textarea {
  min-height: 126px;
  padding-top: 10px;
  resize: vertical;
}

.notice {
  border: 1px solid #bbf7d0;
  border-radius: 3px;
  background: #dcfce7;
  color: #166534;
  padding: 12px 14px;
  font-weight: 400;
}

.form-error {
  margin: 0;
  border: 1px solid #fecaca;
  border-radius: 4px;
  background: #fef2f2;
  color: #991b1b;
  padding: 12px 14px;
}

.customer-login-section {
  display: grid;
  justify-items: center;
}

.customer-login-card {
  display: grid;
  gap: 16px;
  width: min(100%, 520px);
  border: 1px solid var(--line);
  border-radius: 6px;
  background: white;
  padding: clamp(24px, 5vw, 36px);
  box-shadow: 0 18px 44px rgba(29, 45, 60, 0.08);
}

.customer-login-card label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 0.9rem;
}

.customer-login-card input {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 0 13px;
  font: inherit;
}

.customer-login-card input:focus {
  outline: 2px solid rgba(18, 151, 146, 0.18);
  border-color: var(--teal);
}

.customer-login-card .google-login-button {
  min-height: 46px;
  font-size: 0.94rem;
}

.customer-login-hint {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.f2a-cancel-form {
  margin-top: 12px;
  padding: 0;
  background: transparent;
  box-shadow: none;
}

.f2a-cancel-form button {
  min-height: 40px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: #fff;
  color: var(--muted);
}

.customer-demo-accounts {
  display: grid;
  gap: 6px;
  border-top: 1px solid var(--line);
  padding-top: 14px;
}

.customer-demo-accounts strong {
  font-size: 0.9rem;
}

.customer-demo-accounts small {
  color: var(--muted);
  font-size: 0.82rem;
}

.customer-dashboard {
  display: grid;
  gap: 14px;
  background: #f3f4f6;
  padding-top: 0;
}

.customer-breadcrumb {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 40px;
  color: #64748b;
  font-size: 0.95rem;
}

.customer-breadcrumb a {
  color: #047857;
  font-weight: 700;
  text-decoration: none;
}

.customer-breadcrumb a:hover {
  color: #065f46;
  text-decoration: underline;
}

.customer-breadcrumb strong {
  color: #334155;
  font-weight: 700;
}

.customer-area-layout {
  display: grid;
  grid-template-columns: 262px minmax(0, 1fr);
  gap: 30px;
  align-items: start;
}

.customer-sidebar {
  position: sticky;
  top: 104px;
  display: grid;
  gap: 18px;
  align-self: start;
}

.customer-side-card {
  display: grid;
  gap: 0;
  border: 1px solid #dfe3e8;
  border-radius: 4px;
  background: white;
  box-shadow: none;
  overflow: hidden;
}

.customer-side-card h2 {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 0;
  border-bottom: 1px solid #e7edf1;
  background: #fbfbfb;
  padding: 12px 14px;
  color: #4b5563;
  font-size: 1rem;
  font-weight: 400;
}

.customer-side-card h2 svg {
  width: 16px;
  height: 16px;
}

.customer-side-card strong,
.customer-side-card p,
.customer-side-card button {
  margin-inline: 14px;
}

.customer-side-card strong {
  margin-top: 2px;
  color: #102033;
}

.customer-side-card p {
  margin-block: 0 10px;
  color: #23384f;
  line-height: 1.45;
}

.customer-side-card a,
.customer-side-card button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  min-height: 44px;
  border: 0;
  border-top: 1px solid #e7edf1;
  border-radius: 0;
  background: white;
  color: #1f2937;
  font: inherit;
  text-align: left;
  text-decoration: none;
  padding: 0 14px;
  cursor: pointer;
}

.customer-side-card a svg,
.customer-side-card button svg {
  width: 16px;
  height: 16px;
  color: #475569;
}

.customer-side-card a span {
  margin-right: auto;
}

.customer-side-card button b,
.customer-side-card a b {
  display: inline-grid;
  place-items: center;
  min-width: 26px;
  min-height: 26px;
  border-radius: 999px;
  background: #e5e7eb;
  color: #111827;
  font-size: 0.82rem;
  text-align: center;
}

.customer-side-card a.is-active,
.customer-side-card button.is-active {
  border-left: 3px solid #1fb56c;
  background: #edf8f5;
  padding-left: 11px;
}

.customer-side-card a:hover,
.customer-side-card button:hover {
  background: #f5fbfa;
  color: var(--teal);
}

.customer-side-card form {
  display: grid;
  margin-bottom: 12px;
}

.customer-side-card form button {
  color: #9b1c1c;
}

.customer-main {
  display: grid;
  gap: 15px;
  min-width: 0;
}

.customer-panel-head {
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border-bottom: 1px solid #cfd4da;
  padding-bottom: 10px;
}

.customer-panel-head h1 {
  margin: 0;
  color: #111827;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  line-height: 1.05;
}

.customer-stats,
.customer-grid {
  display: grid;
  gap: 14px;
}

.customer-stats {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
}

.customer-stats article,
.customer-card {
  border: 1px solid var(--line);
  border-radius: 3px;
  background: white;
}

.customer-stats article {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 4px 12px;
  align-items: end;
  min-height: 108px;
  border: 1px solid #dfe3e8;
  border-left: 4px solid var(--teal);
  border-radius: 3px;
  padding: 18px 20px 12px;
  box-shadow: none;
}

.customer-stats article:nth-child(2) {
  border-left-color: #4b7bec;
}

.customer-stats article:nth-child(3) {
  border-left-color: #ff5a5f;
}

.customer-stats article:nth-child(4) {
  border-left-color: #ffb020;
}

.customer-stats svg {
  grid-row: span 2;
  width: 48px;
  height: 48px;
  color: #c7cbd1;
  align-self: start;
  justify-self: end;
}

.customer-stats span,
.customer-list small,
.customer-side p {
  color: var(--muted);
}

.customer-stats b {
  grid-row: 1;
  font-size: 2.3rem;
  font-weight: 500;
}

.customer-stats span {
  border-bottom: 2px solid currentColor;
  padding-bottom: 6px;
  text-transform: uppercase;
}

.customer-search {
  display: none !important;
  grid-template-columns: 42px minmax(0, 1fr);
  align-items: center;
  min-height: 46px;
  border: 1px solid #dfe3e8;
  border-radius: 4px;
  background: white;
  box-shadow: none;
}

.cart-account-gate {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  align-items: start;
  margin-top: 18px;
}

.cart-auth-card {
  display: grid;
  gap: 14px;
}

.cart-auth-card label {
  display: grid;
  gap: 6px;
  color: var(--muted);
  font-size: 0.9rem;
}

.cart-auth-card input {
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 0 12px;
  font: inherit;
}

.cart-auth-buttons {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.cart-auth-buttons button,
.cart-auth-buttons .cart-auth-oauth {
  min-height: 40px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  font: 700 0.88rem/1.2 inherit;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  transition: background .18s ease, border-color .18s ease, color .18s ease, transform .18s ease;
}

.cart-auth-buttons button:first-child {
  grid-column: 1 / -1;
}

.cart-auth-buttons button.is-selected {
  background: #ecfdf5;
  border-color: #b7ead6;
  color: #007f68;
}

.cart-auth-buttons button:active,
.cart-auth-buttons .cart-auth-oauth:active {
  transform: translateY(1px);
}

.cart-auth-buttons button:hover,
.cart-auth-buttons .cart-auth-oauth:hover {
  border-color: var(--teal);
  background: #f0fdfa;
  color: #007f68;
}

.cart-auth-buttons svg {
  width: 20px;
  height: 20px;
  stroke-width: 1.75;
}

.cart-email-auth {
  display: grid;
  gap: 12px;
  border-top: 1px solid var(--line);
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  padding-top: 0;
  transform: translateY(-6px);
  visibility: hidden;
  transition: max-height .28s ease, opacity .2s ease, padding-top .2s ease, transform .2s ease, visibility .2s ease;
}

.cart-email-auth.is-active {
  max-height: 980px;
  opacity: 1;
  overflow: visible;
  padding-top: 12px;
  transform: translateY(0);
  visibility: visible;
}

.country-field {
  position: relative;
}

.country-select {
  position: relative;
  width: 100%;
}

.country-select-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  min-height: 54px;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  background: #fff;
  padding: 0 16px;
  color: #071126;
  font: inherit;
  cursor: pointer;
  transition: border-color 200ms ease, background-color 200ms ease, transform 200ms ease;
}

.country-select-trigger:hover,
.country-select.is-open .country-select-trigger,
.country-select-trigger:focus-visible {
  border-color: #10b981;
  border-color: #10b981 !important;
  outline: 0;
  box-shadow: none;
}

.country-select.is-open .country-select-trigger {
  border-bottom-left-radius: 0 !important;
  border-bottom-right-radius: 0 !important;
}

.country-select-value,
.country-option {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.country-flag {
  display: inline-grid;
  place-items: center;
  width: 34px;
  min-width: 34px;
  height: 24px;
  border-radius: 3px !important;
  font-size: 24px;
  line-height: 1;
  overflow: hidden;
}

.country-flag img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.country-chevron {
  width: 12px;
  height: 12px;
  border-right: 2px solid #1f2937;
  border-bottom: 2px solid #1f2937;
  transform: rotate(45deg) translateY(-2px);
  transition: transform 200ms ease;
}

.country-select.is-open .country-chevron {
  transform: rotate(225deg) translateY(-2px);
}

.country-select-menu {
  position: absolute;
  z-index: 40;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  max-height: 280px;
  overflow: auto;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  background: #fff;
  padding: 6px;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.16);
}

.country-select.is-open .country-select-menu {
  top: 100%;
  border-top-left-radius: 0 !important;
  border-top-right-radius: 0 !important;
}

.country-option {
  width: 100%;
  min-height: 46px;
  border: 0;
  border-radius: 9px;
  background: transparent;
  padding: 0 10px;
  color: #111827;
  font: inherit;
  text-align: left;
  cursor: pointer;
  transition: background-color 200ms ease, color 200ms ease;
}

.country-option:hover,
.country-option:focus-visible {
  background: #ecfdf5;
  outline: 0;
}

.country-option.is-selected {
  background: #10b981;
  color: #fff;
}

.form-grid input:not([type="hidden"]),
.form-grid textarea,
.form-grid select,
.cart-email-auth input:not([type="hidden"]),
.cart-payment-form input:not([type="hidden"]):not([type="radio"]):not([type="checkbox"]),
.cart-payment-form textarea,
.customer-profile-form input:not([type="hidden"]),
.customer-profile-form textarea,
.customer-ticket-create-form input:not([type="hidden"]),
.customer-ticket-create-form textarea,
.customer-ticket-create-form select,
.customer-ticket-form input:not([type="hidden"]),
.customer-ticket-form textarea,
.customer-ticket-form select,
.customer-modal-form input:not([type="hidden"]),
.customer-modal-form textarea,
.customer-modal-form select {
  width: 100%;
  min-height: 54px;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  background: #fff;
  padding: 0 16px;
  color: #071126;
  font: inherit;
  box-shadow: none;
  transition: border-color 200ms ease, background-color 200ms ease;
}

.form-grid textarea,
.cart-payment-form textarea,
.customer-profile-form textarea,
.customer-ticket-create-form textarea,
.customer-ticket-form textarea,
.customer-modal-form textarea {
  padding-top: 14px;
  resize: vertical;
}

.form-grid input:not([type="hidden"]):hover,
.form-grid textarea:hover,
.form-grid select:hover,
.cart-email-auth input:not([type="hidden"]):hover,
.cart-payment-form input:not([type="hidden"]):not([type="radio"]):not([type="checkbox"]):hover,
.cart-payment-form textarea:hover,
.customer-profile-form input:not([type="hidden"]):hover,
.customer-profile-form textarea:hover,
.customer-ticket-create-form input:not([type="hidden"]):hover,
.customer-ticket-create-form textarea:hover,
.customer-ticket-create-form select:hover,
.customer-ticket-form input:not([type="hidden"]):hover,
.customer-ticket-form textarea:hover,
.customer-ticket-form select:hover,
.customer-modal-form input:not([type="hidden"]):hover,
.customer-modal-form textarea:hover,
.customer-modal-form select:hover,
.form-grid input:not([type="hidden"]):focus,
.form-grid textarea:focus,
.form-grid select:focus,
.cart-email-auth input:not([type="hidden"]):focus,
.cart-payment-form input:not([type="hidden"]):not([type="radio"]):not([type="checkbox"]):focus,
.cart-payment-form textarea:focus,
.customer-profile-form input:not([type="hidden"]):focus,
.customer-profile-form textarea:focus,
.customer-ticket-create-form input:not([type="hidden"]):focus,
.customer-ticket-create-form textarea:focus,
.customer-ticket-create-form select:focus,
.customer-ticket-form input:not([type="hidden"]):focus,
.customer-ticket-form textarea:focus,
.customer-ticket-form select:focus,
.customer-modal-form input:not([type="hidden"]):focus,
.customer-modal-form textarea:focus,
.customer-modal-form select:focus {
  border-color: #10b981;
  outline: 0;
  box-shadow: none;
}

.cart-auth-status {
  min-height: 18px;
  margin: 0;
  color: var(--muted);
  font-size: 0.86rem;
}

.customer-search svg {
  width: 20px;
  height: 20px;
  justify-self: center;
  color: #5c6b78;
}

.customer-search input {
  width: 100%;
  min-height: 44px;
  border: 0;
  background: transparent;
  font: inherit;
  outline: 0;
}

.customer-dashboard-overview {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, 1fr);
  gap: 18px;
  align-items: start;
}

.customer-overview-column {
  display: grid;
  gap: 18px;
  align-content: start;
}

.customer-backup-strip {
  grid-column: 1 / -1;
}

.customer-overview-card {
  border: 1px solid #dfe3e8;
  border-radius: 4px;
  background: white;
  padding: 0;
  overflow: hidden;
}

.customer-overview-card .customer-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border-bottom: 1px solid #e5e7eb;
  min-height: 56px;
  padding: 0 18px;
}

.customer-overview-card .customer-card-head h2 {
  margin: 0;
  font-size: 1rem;
}

.customer-overview-card .customer-card-head a {
  border: 0;
  min-height: auto;
  padding: 0;
  color: var(--teal);
  font-size: 0.86rem;
}

.customer-overview-card .customer-card-head button,
.customer-overview-card .customer-card-head a,
.customer-feature-service button,
.customer-feature-service a,
.customer-service-row button,
.customer-service-row a,
.customer-help-strip button {
  min-height: 34px;
  border: 1px solid #d8e0e5;
  border-radius: 4px;
  background: white;
  color: #111827;
  padding: 0 13px;
  font: inherit;
  cursor: pointer;
  text-decoration: none;
}

.customer-services-list {
  display: grid;
}

.customer-feature-service,
.customer-service-row {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) auto auto;
  gap: 4px 14px;
  align-items: center;
  border: 0;
  border-top: 1px solid #e5e7eb;
  border-radius: 0;
  padding: 14px 18px;
}

.customer-services-list .customer-feature-service {
  border-top: 0;
}

.customer-feature-service {
  margin-bottom: 0;
  background: white;
  color: #111827;
}

.customer-feature-service > svg,
.customer-service-row > svg {
  grid-row: 1 / span 2;
  width: 36px;
  height: 36px;
  border-radius: 4px;
  background: #111827;
  color: white;
  padding: 9px;
}

.customer-feature-service h3,
.customer-service-row h3 {
  margin: 0;
  font-size: 0.98rem;
}

.customer-feature-service p,
.customer-service-row p {
  margin: 0;
  color: #64748b;
  font-size: 0.88rem;
}

.customer-feature-service small,
.customer-service-row small {
  grid-column: 3;
  grid-row: 1 / span 2;
  border-radius: 4px;
  background: #dff7ef;
  color: #0c8c62;
  padding: 5px 9px;
  font-size: 0.78rem;
  text-transform: uppercase;
}

.customer-feature-service a,
.customer-service-row a {
  grid-column: 4;
  grid-row: 1 / span 2;
}

.customer-feature-service button,
.customer-feature-service a,
.customer-help-strip button,
.customer-help-strip a {
  border-color: transparent;
  background: #20a957;
  color: white;
  font-weight: 700;
  text-decoration: none;
}

.customer-overview-card .customer-card-head a {
  border: 0;
  background: transparent;
  color: var(--teal);
  font-weight: 400;
  min-height: auto;
  padding: 0;
}

.customer-services-list .customer-feature-service a {
  border-color: #d8e0e5;
  background: white;
  color: #111827;
  font-weight: 400;
}

.customer-mini-list {
  display: grid;
}

.customer-mini-list button,
.customer-mini-list a {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 5px 12px;
  border: 0;
  border-top: 1px solid #e5e7eb;
  background: white;
  padding: 14px 18px;
  color: #111827;
  font: inherit;
  text-align: left;
  cursor: pointer;
  text-decoration: none;
}

.customer-mini-list button:first-child,
.customer-mini-list a:first-child {
  border-top: 0;
}

.customer-mini-list small {
  color: var(--muted);
}

.customer-mini-list em {
  grid-column: 2;
  grid-row: 1 / span 2;
  align-self: center;
  border-radius: 4px;
  background: #dff7ef;
  color: #0c8c62;
  padding: 5px 9px;
  font-style: normal;
  font-size: 0.78rem;
  text-transform: uppercase;
}

.customer-activity-card .customer-mini-list a {
  grid-template-columns: 34px minmax(0, 1fr) auto;
}

.customer-domains-summary .customer-mini-list a {
  grid-template-columns: 34px minmax(0, 1fr) auto auto;
}

.customer-activity-card .customer-mini-list a > svg,
.customer-domains-summary .customer-mini-list a > svg {
  grid-row: 1 / span 2;
  width: 30px;
  height: 30px;
  border-radius: 999px;
  background: #e8f6f3;
  color: var(--teal);
  padding: 8px;
}

.customer-activity-card .customer-mini-list a:nth-child(2) > svg {
  background: #fff4d9;
  color: #d99000;
}

.customer-activity-card .customer-mini-list a:nth-child(3) > svg,
.customer-activity-card .customer-mini-list a:nth-child(4) > svg {
  background: #e6f2ff;
  color: #0b8fff;
}

.customer-activity-card .customer-mini-list em {
  grid-column: 3;
  background: transparent;
  color: #475569;
  padding: 0;
  text-align: right;
  text-transform: none;
}

.customer-domains-summary .customer-mini-list em {
  grid-column: 3;
}

.customer-domains-summary .customer-mini-list span {
  grid-column: 4;
  grid-row: 1 / span 2;
  align-self: center;
  border: 1px solid #d8e0e5;
  border-radius: 4px;
  padding: 8px 13px;
  color: #111827;
}

.customer-help-strip {
  display: grid;
  grid-template-columns: 44px 1fr auto;
  gap: 16px;
  align-items: center;
  align-self: start;
  border: 1px solid #bce9de;
  border-radius: 4px;
  background: #eefdf9;
  padding: 18px 22px;
}

.customer-help-strip > svg {
  grid-row: 1 / span 2;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: var(--teal);
  color: white;
  padding: 15px;
}

.customer-help-strip strong,
.customer-help-strip span {
  display: block;
}

.customer-help-strip a {
  grid-column: 3;
  grid-row: 1 / span 2;
  align-self: center;
  justify-self: end;
  width: auto;
  min-width: 118px;
  text-align: center;
}

.customer-backup-strip {
  display: grid;
  grid-template-columns: 64px 1fr auto;
  gap: 18px;
  align-items: center;
  border-radius: 8px;
  background: #001225;
  color: white;
  padding: 24px 28px;
}

.customer-backup-strip svg {
  width: 54px;
  height: 54px;
  color: var(--teal);
}

.customer-backup-strip strong,
.customer-backup-strip span {
  display: block;
}

.customer-backup-strip span {
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.78);
}

.customer-backup-strip button {
  min-height: 44px;
  border: 0;
  border-radius: 4px;
  background: var(--teal);
  color: white;
  padding: 0 20px;
  font: inherit;
  font-weight: 700;
}

.customer-services-list .customer-card-head {
  min-height: 54px;
  padding-block: 0;
}

.customer-services-list .customer-card-head a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: auto;
}

.customer-services-list .customer-feature-service,
.customer-services-list .customer-service-row {
  min-height: 82px;
  padding-block: 12px;
}

.customer-services-list .customer-feature-service a,
.customer-services-list .customer-service-row a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #d8e0e5;
  background: white;
  color: #111827;
  font-weight: 400;
}

.customer-help-strip a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 118px;
  min-height: 38px;
  padding: 0 16px;
  line-height: 1;
  white-space: nowrap;
}

.customer-grid {
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.34fr);
  align-items: start;
}

.customer-card {
  padding: 20px;
}

.customer-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 16px;
}

.customer-list {
  display: grid;
}

.customer-list div {
  display: grid;
  grid-template-columns: minmax(170px, 1fr) minmax(140px, 0.6fr) auto;
  gap: 14px;
  align-items: center;
  padding: 14px 0;
  border-top: 1px solid var(--line);
}

.customer-list em {
  justify-self: end;
  border-radius: 3px;
  background: #dff7ef;
  color: var(--teal);
  padding: 4px 8px;
  font-style: normal;
  font-size: 0.85rem;
}

.customer-list div:last-child em {
  background: #fff1d8;
  color: #b96500;
}

.customer-side {
  display: grid;
  gap: 12px;
}

.customer-side h2,
.cart-empty h2 {
  margin: 0;
}

.customer-panel-head p {
  display: none;
}

.customer-panel-head form {
  display: none;
}

.customer-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  gap: 8px;
  border-bottom: 0;
}

.customer-tabs button {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  border: 1px solid #dfe3e8;
  border-radius: 4px 4px 0 0;
  background: #f7f7f8;
  color: #1f2937;
  padding: 0 16px;
  font: inherit;
  font-size: 0.9rem;
  cursor: pointer;
}

.customer-tabs button.is-active {
  border-color: var(--teal);
  background: var(--teal);
  color: white;
  box-shadow: none;
}

.customer-module-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  align-items: start;
}

.customer-tab-panel {
  display: none;
}

.customer-tab-panel.is-active {
  display: grid;
}

.customer-module {
  display: grid;
  gap: 16px;
  min-width: 0;
  border: 1px solid #dfe3e8;
  border-radius: 4px;
  background: white;
  padding: 20px;
  box-shadow: none;
}

.customer-service-console {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 22px;
}

.customer-service-summary {
  display: grid;
  align-content: start;
  gap: 14px;
  min-height: 230px;
  border-radius: 4px;
  background: #1f2933;
  color: white;
  padding: 24px;
}

.customer-service-summary span {
  width: max-content;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  padding: 6px 10px;
  font-size: 0.78rem;
  text-transform: uppercase;
}

.customer-service-summary h3 {
  margin: 0;
  font-size: 1.8rem;
  line-height: 1.12;
}

.customer-service-summary p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.5;
}

.customer-service-summary strong {
  margin-top: auto;
  border-radius: 999px;
  background: #3fa34d;
  padding: 10px 14px;
  text-align: center;
}

.customer-service-info {
  display: grid;
  gap: 18px;
}

.customer-service-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.customer-service-actions button {
  min-height: 40px;
  border: 0;
  border-radius: 6px;
  color: white;
  font: inherit;
  cursor: pointer;
}

.customer-service-actions button:first-child {
  background: #35a853;
}

.customer-service-actions button:last-child {
  background: #e14b4b;
}

.status-pill.status-pill-active {
  color: #047857;
  background: #ecfdf5;
  border: 1px solid #a7f3d0;
}

.customer-service-management {
  background: var(--white);
  border: 1px solid #d9e2ea;
  border-radius: 3px;
  padding: 24px;
  display: grid;
  gap: 18px;
}

.customer-service-management-header {
  display: grid;
  gap: 16px;
}

.customer-service-management-hero {
  background: var(--white);
  border: 1px solid #d9e2ea;
  border-radius: 3px;
  padding: 18px;
  display: grid;
  gap: 16px;
  min-height: 118px;
}

.customer-service-management-title-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.customer-service-management-title {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  min-width: 0;
}

.customer-service-management-title h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.6rem, 2.2vw, 1.95rem);
  line-height: 1.15;
}

.customer-service-management-title .customer-service-badge {
  display: inline-flex;
  margin: 0 0 7px;
  border-radius: 999px;
  background: #e7f8ef;
  border: 1px solid #9be7be;
  color: #0d7a4c;
  padding: 4px 10px;
  min-height: 24px;
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: .02em;
  text-transform: uppercase;
}

.customer-service-icon-wrap {
  display: grid;
  place-items: center;
  width: 72px;
  height: 72px;
  border-radius: 8px;
  background: #0f2e43;
  color: #d6e6ef;
}

.customer-service-icon-wrap svg {
  width: 32px;
  height: 32px;
}

.customer-service-domain {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: #1d4ed8;
  font-weight: 500;
  text-decoration: none;
}

.customer-service-domain:hover {
  text-decoration: underline;
}

.customer-service-primary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  border: 1px solid var(--teal);
  background: var(--teal);
  color: #fff;
  padding: 0 18px;
  border-radius: 3px;
  text-decoration: none;
  white-space: nowrap;
}

.customer-service-primary-btn:hover {
  background: #0c817d;
}

.customer-service-management-hero-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.customer-service-management-hero-grid p {
  margin: 0;
  min-height: 72px;
  border: 1px solid #d9e2ea;
  border-radius: 3px;
  background: #fff;
  color: #1f2a37;
  padding: 12px 12px;
}

.customer-service-management-hero-grid span {
  display: block;
  color: #5f7389;
  font-size: 0.84rem;
  margin-bottom: 7px;
}

.customer-service-management-hero-grid strong {
  display: block;
  font-size: 0.95rem;
  color: #111827;
}

.customer-service-management-tabs {
  display: flex;
  align-items: center;
  gap: 2px;
  border-bottom: 1px solid #d9e2ea;
  overflow-x: auto;
  white-space: nowrap;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.customer-service-management-tabs::-webkit-scrollbar {
  display: none;
}

.customer-service-management-tabs a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 0 14px;
  color: #1f2d3b;
  text-decoration: none;
  border-bottom: 2px solid transparent;
}

.customer-service-management-tabs a svg {
  width: 16px;
  height: 16px;
}

.customer-service-management-tabs a.is-active {
  color: var(--teal);
  border-bottom-color: var(--teal);
  font-weight: 600;
}

.customer-service-management-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 1.24fr) minmax(0, 0.92fr);
  gap: 14px;
}

.customer-service-card {
  border: 1px solid #d9e2ea;
  border-radius: 3px;
  background: var(--white);
  padding: 18px;
  display: grid;
  gap: 12px;
  min-height: 0;
}

.customer-service-card h3 {
  margin: 0;
  color: var(--ink);
  font-size: 1.02rem;
}

.customer-service-card-subtext {
  margin: 0;
  color: #5f7389;
  font-size: 0.88rem;
}

.customer-service-detail-list {
  display: grid;
  gap: 0;
  margin: 0;
}

.customer-service-detail-list div {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 10px 0;
  border-bottom: 1px dashed #d9e2ea;
}

.customer-service-detail-list div:last-child {
  border-bottom: 0;
}

.customer-service-detail-list span {
  color: #5d6f85;
  font-size: 0.87rem;
}

.customer-service-detail-list strong {
  color: var(--ink);
  font-weight: 600;
  text-align: right;
}

.customer-service-outline-btn,
.customer-quick-action-btn {
  min-height: 40px;
  border-radius: 3px;
  border: 1px solid var(--teal);
  background: #fff;
  color: var(--teal);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  padding: 0 14px;
  cursor: pointer;
  transition: background .15s ease, color .15s ease, border-color .15s ease;
}

.customer-service-outline-btn {
  justify-self: start;
  width: max-content;
}

.customer-service-outline-btn:hover {
  background: #e8fbf3;
}

.customer-resource-list {
  display: grid;
  gap: 12px;
}

.customer-resource-item {
  display: grid;
  gap: 8px;
}

.customer-resource-item-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.customer-resource-item-head span {
  color: #253b54;
  font-size: 0.88rem;
}

.customer-resource-item-head strong {
  color: var(--ink);
  font-size: 0.88rem;
  text-align: right;
  font-weight: 600;
}

.customer-resource-track {
  width: 100%;
  height: 8px;
  border-radius: 999px;
  background: #edf2f7;
  overflow: hidden;
}

.customer-resource-track span {
  display: block;
  height: 100%;
  width: 0;
  border-radius: inherit;
  background: var(--teal);
}

.customer-quick-actions-list {
  display: grid;
  gap: 8px;
}

.customer-quick-action-btn {
  justify-content: start;
  gap: 10px;
  width: 100%;
}

.customer-quick-action-btn svg {
  width: 18px;
  height: 18px;
  color: var(--ink);
}

.customer-quick-action-btn svg:last-child {
  margin-left: auto;
  color: #6b7280;
}

.customer-quick-action-btn:hover {
  border-color: var(--teal);
  background: #effbf5;
}

.customer-service-status-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.customer-service-status-card {
  border: 1px solid #d9e2ea;
  border-radius: 3px;
  padding: 16px;
  background: #fff;
  display: grid;
  gap: 10px;
  min-height: 112px;
}

.customer-service-status-card h3 {
  margin: 0;
  font-size: 0.96rem;
  color: #122033;
}

.customer-service-status-card p {
  margin: 0;
  color: #4f6479;
  font-size: 0.88rem;
  line-height: 1.45;
}

.customer-service-status-card header {
  display: flex;
  align-items: center;
  gap: 8px;
}

.customer-service-status-card a {
  width: max-content;
  display: inline-flex;
  color: #1242a0;
  text-decoration: none;
  font-size: 0.86rem;
}

.customer-service-status-card a:hover {
  text-decoration: underline;
}

.customer-service-status-card.status-success {
  background: #f0fdf4;
  border-color: #bce5c8;
}

.customer-service-status-card.status-success .status-icon {
  background: #ddf5e6;
  color: #15803d;
}

.customer-service-status-card.status-help {
  background: #eef5ff;
  border-color: #c2ddff;
}

.customer-service-status-card.status-help .status-icon {
  background: #dbeafe;
  color: #1e40af;
}

.customer-service-status-card.status-warning {
  background: #fffbeb;
  border-color: #f4d8a0;
}

.customer-service-status-card.status-warning .status-icon {
  background: #fde68a;
  color: #92400e;
}

.status-icon {
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  flex: 0 0 auto;
}

.status-icon svg {
  width: 14px;
  height: 14px;
}

.customer-service-anchor {
  display: block;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.customer-config-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  border-bottom: 1px solid #dfe6eb;
}

.customer-config-tabs span {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  border: 1px solid #dfe6eb;
  border-bottom: 0;
  border-radius: 4px 4px 0 0;
  background: white;
  padding: 10px 14px;
  color: #1f2937;
}

.customer-config-tabs svg {
  width: 16px;
  height: 16px;
}

.customer-hosting-data {
  display: grid;
  gap: 8px;
  margin: 0;
  border: 1px solid #dfe6eb;
  border-radius: 4px;
  background: #fbfbfc;
  padding: 18px;
}

.customer-hosting-data div {
  display: grid;
  grid-template-columns: 170px minmax(0, 1fr);
  gap: 18px;
}

.customer-hosting-data dt {
  color: #111827;
  font-weight: 700;
  text-align: right;
}

.customer-hosting-data dd {
  margin: 0;
  color: #23384f;
}

.customer-action-tiles {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.customer-action-tiles a {
  display: grid;
  gap: 10px;
  justify-items: center;
  min-height: 118px;
  border: 1px solid #e1ebf0;
  border-radius: 4px;
  background: white;
  color: #1f2937;
  padding: 18px 10px;
  text-align: center;
  text-decoration: none;
  box-shadow: none;
}

.customer-action-tiles a:hover {
  transform: translateY(-2px);
  border-color: var(--teal);
}

.customer-action-tiles svg {
  width: 42px;
  height: 42px;
  color: var(--teal);
}

.customer-module.customer-tab-panel {
  display: none;
}

.customer-module.customer-tab-panel.is-active {
  display: grid;
}

.customer-services-page {
  display: grid;
  gap: 22px;
}

.customer-service-page-head {
  border-bottom: 1px solid #dfe3e8;
  padding-bottom: 20px;
}

.customer-service-page-head h2 {
  margin: 0 0 12px;
  color: #111827;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 500;
  line-height: 1.08;
}

.customer-service-page-head p {
  margin: 0;
  color: #64748b;
}

.customer-service-tools {
  display: grid;
  grid-template-columns: minmax(280px, 0.5fr) 220px;
  gap: 18px;
  justify-content: space-between;
}

.customer-service-tools label {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  align-items: center;
  min-height: 46px;
  border: 1px solid #dfe3e8;
  border-radius: 4px;
  background: white;
}

.customer-service-tools svg {
  width: 20px;
  height: 20px;
  justify-self: center;
  color: #5c6b78;
}

.customer-service-tools input,
.customer-service-tools select {
  min-height: 44px;
  border: 1px solid #dfe3e8;
  border-radius: 4px;
  background: white;
  color: #1f2937;
  padding: 0 12px;
  font: inherit;
}

.customer-service-tools input {
  border: 0;
  outline: 0;
}

.customer-service-list {
  display: grid;
  border: 1px solid #dfe3e8;
  border-radius: 4px;
  background: white;
  overflow: hidden;
}

.customer-service-item {
  display: grid;
  grid-template-columns: 80px minmax(260px, 1fr) minmax(190px, 0.48fr) minmax(160px, 0.32fr);
  gap: 26px;
  align-items: center;
  padding: 34px 30px;
  border-top: 1px solid #e5e7eb;
}

.customer-service-item:first-child {
  border-top: 0;
}

.customer-service-icon {
  display: grid;
  place-items: center;
  width: 80px;
  height: 80px;
  border-radius: 10px;
  background: #1f2933;
  color: var(--teal);
}

.customer-service-icon svg {
  width: 42px;
  height: 42px;
}

.customer-service-copy {
  display: grid;
  gap: 8px;
}

.customer-service-copy span {
  width: max-content;
  border-radius: 999px;
  background: #dff7ef;
  color: #008f7b;
  padding: 6px 10px;
  font-size: 0.76rem;
  text-transform: uppercase;
}

.customer-service-copy h3 {
  margin: 0;
  color: #111827;
  font-size: 1.45rem;
}

.customer-service-copy p {
  margin: 0;
  color: #334155;
}

.customer-service-copy a {
  color: #0057b8;
  text-decoration: none;
}

.customer-service-dates,
.customer-service-price {
  display: grid;
  gap: 13px;
}

.customer-service-dates > strong {
  color: #111827;
  font-weight: 500;
}

.customer-service-dates > strong::before {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  margin-right: 8px;
  border-radius: 50%;
  background: #22b86a;
}

.customer-service-dates span,
.customer-service-price span {
  color: #64748b;
  line-height: 1.45;
}

.customer-service-dates b {
  color: #111827;
  font-weight: 500;
}

.customer-service-price {
  justify-items: end;
}

.customer-service-price strong {
  color: #111827;
  font-size: 1.3rem;
}

.customer-service-price button,
.customer-service-price a {
  min-width: 108px;
  min-height: 42px;
  display: inline-grid;
  place-items: center;
  border: 0;
  border-radius: 5px;
  background: #20a957;
  color: white;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
}

.customer-service-list footer {
  border-top: 1px solid #e5e7eb;
  padding: 18px 30px;
  color: #64748b;
  font-size: 0.9rem;
}

.customer-tickets-page,
.customer-create-ticket-page {
  display: grid;
  gap: 22px;
}

.customer-ticket-tools {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) 250px 250px;
  gap: 22px;
}

.customer-ticket-tools label {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  align-items: center;
  min-height: 46px;
  border: 1px solid #dfe3e8;
  border-radius: 4px;
  background: white;
}

.customer-ticket-tools svg {
  width: 20px;
  height: 20px;
  justify-self: center;
  color: #5c6b78;
}

.customer-ticket-tools input,
.customer-ticket-tools select {
  min-height: 44px;
  border: 1px solid #dfe3e8;
  border-radius: 4px;
  background: white;
  color: #1f2937;
  padding: 0 14px;
  font: inherit;
}

.customer-ticket-tools input {
  border: 0;
  outline: 0;
}

.customer-ticket-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.customer-ticket-filters a {
  display: inline-flex;
  gap: 12px;
  align-items: center;
  min-height: 42px;
  border: 1px solid #dfe3e8;
  border-radius: 4px;
  background: white;
  color: #1f2937;
  padding: 0 18px;
  text-decoration: none;
}

.customer-ticket-filters a.is-active {
  border-color: var(--teal);
  color: var(--teal);
}

.customer-ticket-filters b {
  border-radius: 999px;
  background: #dff7ef;
  color: #0c8c62;
  padding: 2px 8px;
  font-size: 0.8rem;
}

.customer-ticket-list {
  display: grid;
  border: 1px solid #dfe3e8;
  border-radius: 4px;
  background: white;
  overflow: hidden;
}

.customer-ticket-list > header,
.customer-ticket-list article {
  display: grid;
  grid-template-columns: minmax(300px, 1fr) 120px 220px 170px;
  gap: 24px;
  align-items: center;
  padding: 18px 24px;
}

.customer-ticket-list > header {
  background: #fbfbfb;
  color: #64748b;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
}

.customer-ticket-list article {
  border-top: 1px solid #e5e7eb;
}

.customer-ticket-list article strong,
.customer-ticket-list article p,
.customer-ticket-list article small {
  display: block;
}

.customer-ticket-list article p {
  margin: 8px 0;
  color: #334155;
}

.customer-ticket-list article small {
  color: #64748b;
}

.customer-ticket-list article em {
  width: max-content;
  border-radius: 4px;
  background: #dff7ef;
  color: #0c8c62;
  padding: 5px 9px;
  font-style: normal;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
}

.customer-ticket-list article em.is-closed {
  background: #e5e7eb;
  color: #4b5563;
}

.customer-ticket-list article a {
  justify-self: end;
  border: 1px solid #dfe3e8;
  border-radius: 4px;
  color: #111827;
  padding: 10px 16px;
  text-decoration: none;
}

.customer-ticket-list footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #e5e7eb;
  padding: 18px 24px;
  color: #64748b;
}

.customer-ticket-list footer div {
  display: flex;
  gap: 10px;
  align-items: center;
}

.customer-ticket-list footer button,
.customer-ticket-list footer b {
  min-width: 40px;
  min-height: 40px;
  display: grid;
  place-items: center;
  border: 1px solid #dfe3e8;
  border-radius: 4px;
  background: white;
  color: #1f2937;
}

.customer-ticket-list footer b {
  border-color: #bce9de;
  background: #eefdf9;
  color: var(--teal);
}

.customer-ticket-create-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px 26px;
  border: 1px solid #dfe3e8;
  border-radius: 4px;
  background: white;
  padding: 28px;
}

.customer-ticket-create-form label,
.ticket-attach-box {
  display: grid;
  gap: 8px;
  color: #111827;
}

.customer-ticket-create-form strong {
  color: #e14b4b;
}

.customer-ticket-create-form span,
.ticket-attach-box span,
.ticket-attach-box small {
  color: #64748b;
  font-weight: 400;
}

.customer-ticket-create-form .is-wide {
  grid-column: 1 / -1;
}

.customer-ticket-create-form input,
.customer-ticket-create-form select,
.customer-ticket-create-form textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid #dfe3e8;
  border-radius: 4px;
  background: white;
  padding: 0 14px;
  font: inherit;
}

.customer-ticket-create-form textarea {
  min-height: 180px;
  padding-top: 14px;
}

.ticket-attach-box {
  border: 1px solid #dfe3e8;
  border-radius: 4px;
  padding: 14px;
}

.ticket-attach-box button {
  width: max-content;
  min-height: 40px;
  border: 1px solid #dfe3e8;
  border-radius: 4px;
  background: white;
  padding: 0 16px;
  font: inherit;
}

.customer-ticket-detail-page {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 18px;
}

.customer-ticket-detail-head,
.customer-ticket-summary-card,
.customer-ticket-detail-tabs {
  grid-column: 1 / -1;
}

.customer-ticket-detail-head {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: start;
}

.customer-ticket-detail-head h2,
.customer-ticket-detail-head p,
.customer-ticket-summary-card h3,
.customer-ticket-summary-card p {
  margin: 0;
}

.customer-ticket-detail-head h2 span {
  color: #1fb56c;
  font-size: 1rem;
}

.customer-ticket-detail-head p,
.customer-ticket-summary-card p,
.customer-ticket-conversation time {
  margin-top: 6px;
  color: #64748b;
}

.customer-ticket-detail-head div:last-child,
.customer-ticket-reply footer {
  display: flex;
  gap: 10px;
  align-items: center;
}

.customer-ticket-detail-head button,
.customer-ticket-summary-card button,
.customer-ticket-reply button,
.customer-ticket-detail-side button {
  min-height: 40px;
  border: 1px solid #dfe3e8;
  border-radius: 4px;
  background: white;
  padding: 0 14px;
  font: inherit;
}

.customer-ticket-detail-head button:nth-child(2),
.customer-ticket-reply button {
  border-color: transparent;
  background: #1fb56c;
  color: white;
  font-weight: 700;
}

.customer-ticket-summary-card,
.customer-ticket-detail-tabs,
.customer-ticket-conversation,
.customer-ticket-detail-side section {
  border: 1px solid #dfe3e8;
  border-radius: 4px;
  background: white;
}

.customer-ticket-summary-card {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr) auto auto;
  gap: 18px;
  align-items: center;
  padding: 22px;
}

.customer-ticket-summary-card > svg {
  width: 58px;
  height: 58px;
  border-radius: 999px;
  background: #e6f2ff;
  color: #0b8fff;
  padding: 15px;
}

.customer-ticket-summary-card dl {
  display: grid;
  grid-template-columns: repeat(3, auto);
  gap: 28px;
  margin: 0;
}

.customer-ticket-summary-card dt {
  color: #64748b;
}

.customer-ticket-summary-card dd {
  margin: 6px 0 0;
  font-weight: 700;
}

.customer-ticket-detail-tabs {
  display: flex;
  gap: 36px;
  padding: 0 22px;
}

.customer-ticket-detail-tabs a {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  min-height: 52px;
  border-bottom: 2px solid transparent;
  color: #334155;
  text-decoration: none;
}

.customer-ticket-detail-tabs a.is-active {
  border-color: #1fb56c;
  color: #111827;
}

.customer-ticket-detail-tabs b {
  display: inline-grid;
  place-items: center;
  min-width: 24px;
  min-height: 24px;
  border-radius: 999px;
  background: #dff7ef;
  color: #0c8c62;
}

.customer-ticket-conversation {
  overflow: hidden;
}

.customer-ticket-conversation article {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr) auto 24px;
  gap: 14px;
  border-bottom: 1px solid #e5e7eb;
  padding: 16px 22px;
}

.customer-ticket-conversation article > b {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: #e5e7eb;
}

.customer-ticket-conversation article:nth-child(even) > b {
  background: #1f7ae0;
  color: white;
}

.customer-ticket-conversation p {
  margin: 6px 0 0;
}

.customer-ticket-conversation article button {
  border: 0;
  background: transparent;
}

.customer-ticket-reply {
  display: grid;
  gap: 12px;
  padding: 16px 22px;
}

.customer-ticket-reply nav {
  display: flex;
  gap: 28px;
}

.customer-ticket-reply a {
  color: #64748b;
  text-decoration: none;
}

.customer-ticket-reply a.is-active {
  color: var(--teal);
}

.customer-ticket-reply textarea {
  min-height: 90px;
  border: 1px solid #dfe3e8;
  border-radius: 4px;
  padding: 12px;
  font: inherit;
}

.customer-ticket-reply footer {
  justify-content: space-between;
}

.customer-ticket-detail-side {
  display: grid;
  gap: 18px;
}

.customer-ticket-detail-side section {
  display: grid;
  gap: 12px;
  padding: 18px;
}

.customer-ticket-detail-side h3,
.customer-ticket-detail-side p {
  margin: 0;
}

.customer-ticket-detail-side p {
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

.customer-ticket-detail-side em,
.customer-ticket-detail-side span {
  border-radius: 4px;
  background: #dff7ef;
  color: #0c8c62;
  padding: 4px 8px;
  font-style: normal;
}

.customer-ticket-detail-side div,
.customer-ticket-detail-side a {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.customer-ticket-detail-side a {
  justify-content: space-between;
  color: #0b65c2;
  text-decoration: none;
}

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

.customer-mail-head,
.customer-mail-imap {
  grid-column: 1 / -1;
}

.customer-mail-head {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: start;
}

.customer-mail-head h2,
.customer-mail-head p {
  margin: 0;
}

.customer-mail-head p {
  margin-top: 8px;
  color: #64748b;
}

.customer-mail-head > div:last-child {
  display: flex;
  gap: 12px;
}

.customer-mail-head button,
.customer-mail-tools select,
.customer-mail-table button,
.customer-mail-table a,
.customer-mail-side a,
.customer-mail-imap button {
  min-height: 38px;
  border: 1px solid #dfe3e8;
  border-radius: 4px;
  background: white;
  color: #0f172a;
  padding: 0 14px;
  font: inherit;
  text-decoration: none;
}

.customer-mail-head button:last-child {
  border-color: transparent;
  background: #10b981;
  color: white;
  font-weight: 700;
}

.customer-mail-panel,
.customer-mail-side section,
.customer-mail-imap {
  border: 1px solid #dfe3e8;
  border-radius: 4px;
  background: white;
  overflow: hidden;
}

.customer-mail-panel nav {
  display: flex;
  gap: 28px;
  border-bottom: 1px solid #e5e7eb;
  padding: 0 18px;
}

.customer-mail-panel nav a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 48px;
  border-bottom: 2px solid transparent;
  color: #334155;
  text-decoration: none;
}

.customer-mail-panel nav a.is-active {
  border-color: #10b981;
  color: #0f172a;
}

.customer-mail-tools {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 190px;
  gap: 18px;
  border-bottom: 1px solid #e5e7eb;
  padding: 14px 18px;
}

.customer-mail-tools label {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 40px;
  border: 1px solid #dfe3e8;
  border-radius: 4px;
  padding: 0 12px;
}

.customer-mail-tools input {
  width: 100%;
  border: 0;
  outline: 0;
  font: inherit;
}

.customer-mail-table header,
.customer-mail-table article {
  display: grid;
  grid-template-columns: minmax(230px, 1fr) 160px 90px 90px 160px;
  gap: 16px;
  align-items: center;
  padding: 10px 18px;
}

.customer-mail-table header {
  color: #64748b;
  background: #fbfbfb;
}

.customer-mail-table article {
  border-top: 1px solid #e5e7eb;
}

.mail-account {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
}

.mail-account b {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: #f0e6ff;
  color: #7c3aed;
}

.mail-account small,
.customer-mail-table small,
.customer-mail-side p,
.customer-mail-imap p,
.customer-mail-imap small {
  color: #64748b;
}

.customer-mail-table article div:nth-child(2) span,
.mail-summary span {
  display: block;
  height: 6px;
  border-radius: 999px;
  background: #e5e7eb;
  overflow: hidden;
}

.customer-mail-table article div:nth-child(2) i,
.mail-summary i {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: #1f7ae0;
}

.customer-mail-table em {
  width: max-content;
  border-radius: 4px;
  background: #dff7ef;
  color: #0c8c62;
  padding: 4px 8px;
  font-style: normal;
}

.customer-mail-table article > div:last-child {
  display: flex;
  gap: 8px;
}

.customer-mail-table footer {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  border-top: 1px solid #e5e7eb;
  padding: 10px 18px;
  color: #64748b;
}

.customer-mail-table footer div {
  display: flex;
  gap: 8px;
  align-items: center;
}

.customer-mail-side {
  display: grid;
  gap: 18px;
}

.customer-mail-side section {
  display: grid;
  gap: 12px;
  padding: 18px;
}

.mail-summary > svg {
  width: 52px;
  height: 52px;
  border-radius: 999px;
  background: #e8f8f3;
  color: #10b981;
  padding: 14px;
}

.mail-summary strong {
  font-size: 1.35rem;
}

.mail-summary a,
.customer-mail-side section:nth-child(2) a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #0f172a;
}

.mail-summary a {
  color: #10b981;
  padding: 0;
  border: 0;
}

.customer-mail-side section:last-child div {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.customer-mail-side section:last-child a:first-child {
  background: #10b981;
  color: white;
  border-color: transparent;
}

.customer-mail-imap {
  position: relative;
  display: grid;
  gap: 10px;
  padding: 18px;
  background: #f7fffc;
}

.customer-mail-imap h3,
.customer-mail-imap p {
  margin: 0;
}

.customer-mail-imap dl {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  margin: 0;
}

.customer-mail-imap dt {
  color: #64748b;
}

.customer-mail-imap dd {
  margin: 6px 0 0;
}

.customer-mail-imap button {
  position: absolute;
  right: 18px;
  bottom: 18px;
}

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

.customer-backups-head,
.customer-backups-note {
  grid-column: 1 / -1;
}

.customer-backups-head {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr) auto auto;
  gap: 16px;
  align-items: center;
}

.customer-backups-head > svg {
  width: 48px;
  height: 48px;
  border: 1px solid #dfe3e8;
  border-radius: 999px;
  color: #10b981;
  padding: 12px;
}

.customer-backups-head h2,
.customer-backups-head p {
  margin: 0;
}

.customer-backups-head p {
  margin-top: 8px;
  color: #64748b;
}

.customer-backups-head button,
.customer-backups-tools select,
.customer-backups-table button,
.customer-backups-side button {
  min-height: 38px;
  border: 1px solid #dfe3e8;
  border-radius: 4px;
  background: white;
  color: #0f172a;
  padding: 0 14px;
  font: inherit;
}

.customer-backups-head button:last-child {
  border-color: transparent;
  background: #10b981;
  color: white;
  font-weight: 700;
}

.customer-backups-panel,
.customer-backups-side section,
.customer-backups-note {
  border: 1px solid #dfe3e8;
  border-radius: 4px;
  background: white;
  overflow: hidden;
}

.customer-backups-panel nav {
  display: flex;
  gap: 34px;
  border-bottom: 1px solid #e5e7eb;
  padding: 0 18px;
}

.customer-backups-panel nav a {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  border-bottom: 2px solid transparent;
  color: #334155;
  text-decoration: none;
}

.customer-backups-panel nav a.is-active {
  border-color: #10b981;
  color: #0f172a;
}

.customer-backups-tools {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 190px;
  gap: 18px;
  border-bottom: 1px solid #e5e7eb;
  padding: 14px 18px;
}

.customer-backups-tools label {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 40px;
  border: 1px solid #dfe3e8;
  border-radius: 4px;
  padding: 0 12px;
}

.customer-backups-tools input {
  width: 100%;
  border: 0;
  outline: 0;
  font: inherit;
}

.customer-backups-table header,
.customer-backups-table article {
  display: grid;
  grid-template-columns: 32px minmax(170px, 1fr) 120px minmax(180px, 1fr) 100px 150px;
  gap: 14px;
  align-items: center;
  padding: 10px 18px;
}

.customer-backups-table header {
  grid-template-columns: 32px minmax(170px, 1fr) 120px minmax(180px, 1fr) 100px 150px;
  color: #64748b;
  background: #fbfbfb;
}

.customer-backups-table header span:first-child {
  grid-column: 2;
}

.customer-backups-table article {
  border-top: 1px solid #e5e7eb;
}

.customer-backups-table article > svg {
  color: #10b981;
}

.customer-backups-table small {
  display: block;
  color: #64748b;
}

.customer-backups-table em {
  width: max-content;
  border-radius: 4px;
  background: #dff7ef;
  color: #0c8c62;
  padding: 4px 8px;
  font-style: normal;
}

.customer-backups-table em.is-manual {
  background: #e6f2ff;
  color: #0b65c2;
}

.customer-backups-table article div:last-child,
.customer-backups-table footer div {
  display: flex;
  gap: 8px;
  align-items: center;
}

.customer-backups-table footer {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  border-top: 1px solid #e5e7eb;
  padding: 10px 18px;
  color: #64748b;
}

.customer-backups-side {
  display: grid;
  gap: 18px;
}

.customer-backups-side section {
  display: grid;
  gap: 12px;
  padding: 18px;
}

.backup-ring {
  display: grid;
  place-items: center;
  justify-self: center;
  width: 132px;
  height: 132px;
  border-radius: 999px;
  background: conic-gradient(#10b981 56%, #e5e7eb 0);
}

.backup-ring::before {
  content: "";
  position: absolute;
}

.backup-ring strong,
.backup-ring span {
  grid-area: 1 / 1;
}

.backup-ring span {
  margin-top: 38px;
  color: #64748b;
}

.customer-backups-side p {
  display: flex;
  justify-content: space-between;
  margin: 0;
  color: #64748b;
}

.customer-backups-side a {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #0f172a;
  text-decoration: none;
}

.backup-help {
  background: #f7fffc !important;
}

.backup-help a {
  justify-content: center;
  min-height: 42px;
  border-radius: 4px;
  background: #10b981;
  color: white;
  font-weight: 700;
}

.customer-backups-note {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  padding: 18px;
  background: #faf8ff;
}

.customer-backups-note > svg {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: #f0e6ff;
  color: #7c3aed;
  padding: 10px;
}

.customer-backups-note h3,
.customer-backups-note p {
  margin: 0;
}

.customer-backups-note p {
  margin-top: 6px;
  color: #64748b;
}

.customer-backups-note button {
  min-height: 40px;
  border: 1px solid #dfe3e8;
  border-radius: 4px;
  background: white;
  padding: 0 18px;
  font: inherit;
}

.customer-backup-security-page {
  display: grid;
  gap: 16px;
}

.customer-backup-security-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 14px;
  padding: 20px;
  border: 1px solid #d9e2ea;
  border-radius: 4px;
  background: white;
}

.customer-backup-security-head h2 {
  margin: 0;
  color: #0f172a;
  font-size: 1.9rem;
  font-weight: 550;
  line-height: 1.1;
}

.customer-backup-security-head p {
  margin: 8px 0 0;
  color: #66798d;
}

.status-pill-success {
  align-self: center;
}

.customer-backup-security-summary-grid,
.customer-backup-security-security-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.customer-backup-summary-card,
.customer-backup-security-card {
  border: 1px solid #d9e2ea;
  border-radius: 6px;
  background: white;
  padding: 14px;
  display: grid;
  gap: 8px;
  min-height: 128px;
}

.customer-backup-summary-card {
  grid-template-columns: auto 1fr;
}

.customer-backup-security-card {
  gap: 6px;
}

.customer-backup-summary-icon-wrap {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: #e8f8ef;
  color: #166534;
}

.customer-backup-summary-icon-wrap svg {
  width: 17px;
  height: 17px;
  color: inherit;
}

.customer-backup-summary-card h3,
.customer-backup-security-card h4 {
  margin: 0;
  font-size: 0.93rem;
  color: #122033;
}

.customer-backup-summary-card p,
.customer-backup-security-card p {
  margin: 0;
  color: #5e6e80;
  font-size: 0.88rem;
}

.customer-backup-summary-status {
  display: block;
  margin-top: 1px;
  color: #15803d;
  font-size: 0.98rem;
}

.customer-backup-status-ok {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: #15803d;
  font-weight: 600;
}

.customer-backup-security-panel,
.customer-backup-security-security-panel,
.customer-backup-security-status-box {
  border: 1px solid #d9e2ea;
  border-radius: 4px;
  background: white;
  padding: 16px;
}

.customer-backup-security-panel h3,
.customer-backup-security-security-panel h3 {
  margin: 0 0 12px;
  color: #0f172a;
}

.customer-security-table-wrap {
  overflow-x: auto;
}

.customer-security-table {
  display: grid;
  grid-template-columns: repeat(6, minmax(120px, 1fr));
  min-width: 930px;
}

.customer-security-table header,
.customer-security-table article {
  display: contents;
}

.customer-security-table span[role="columnheader"],
.customer-security-table span[role="cell"],
.customer-security-table div[role="cell"] {
  display: flex;
  align-items: center;
  min-height: 46px;
  padding: 10px 12px;
  border-bottom: 1px solid #e5e7eb;
  border-right: 1px solid #e5e7eb;
  color: #0f172a;
}

.customer-security-table span[role="columnheader"] {
  border-top: 1px solid #d9e2ea;
  background: #f8fbfe;
  color: #64748b;
  font-size: 0.85rem;
  font-weight: 500;
}

.customer-security-table header span:last-child,
.customer-security-table article div[role="cell"]:last-child {
  border-right: 0;
}

.customer-security-table article div[role="cell"] {
  gap: 6px;
}

.customer-backup-mini-btn,
.customer-backup-menu-btn {
  min-height: 31px;
  border: 1px solid #d9e2ea;
  border-radius: 3px;
  background: #fff;
  color: #0f172a;
  font: inherit;
  font-size: 0.84rem;
}

.customer-backup-mini-btn {
  padding: 0 11px;
}

.customer-backup-menu-btn {
  width: 31px;
  padding: 0;
  justify-content: center;
  color: #35506a;
}

.customer-backup-menu-btn svg,
.customer-backup-mini-btn svg {
  width: 14px;
  height: 14px;
}

.customer-security-secondary-btn {
  margin-top: 12px;
  min-height: 36px;
  border: 1px solid #d9e2ea;
  border-radius: 3px;
  background: #fff;
  color: #166534;
  padding: 0 14px;
  cursor: pointer;
  font: inherit;
  text-decoration: none;
}

.customer-backup-security-security-panel p {
  margin: 0;
}

.customer-backup-security-status-box {
  display: grid;
  grid-template-columns: 42px 1fr auto;
  gap: 14px;
  align-items: center;
  border-color: #b5d9b7;
  background: #f0fdf4;
}

.customer-backup-status-box-icon {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  color: #166534;
  background: #dcfce7;
}

.customer-backup-status-box-icon svg {
  width: 18px;
  height: 18px;
}

.customer-backup-security-status-box h4 {
  margin: 0;
  color: #144e27;
}

.customer-backup-security-status-box p {
  margin: 6px 0 0;
  color: #2d5a39;
}

.customer-invoices-page {
  display: grid;
  gap: 18px;
}

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

.customer-invoice-tools label,
.customer-invoice-tools select {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 46px;
  border: 1px solid #dfe3e8;
  border-radius: 4px;
  background: white;
  padding: 0 14px;
  font: inherit;
}

.customer-invoice-tools input {
  width: 100%;
  border: 0;
  outline: 0;
  font: inherit;
}

.customer-invoice-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.customer-invoice-stats a {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 3px 16px;
  align-items: center;
  border: 1px solid #dfe3e8;
  border-radius: 4px;
  background: white;
  padding: 22px;
  color: #0f172a;
  text-decoration: none;
}

.customer-invoice-stats svg:first-child {
  grid-row: 1 / span 3;
  width: 48px;
  height: 48px;
  border-radius: 999px;
  background: #e8f8f3;
  color: #10b981;
  padding: 13px;
}

.customer-invoice-stats a:nth-child(3) svg:first-child {
  background: #fff4d9;
  color: #d99000;
}

.customer-invoice-stats a:nth-child(4) svg:first-child {
  background: #ffe8e8;
  color: #ef4444;
}

.customer-invoice-stats strong {
  font-size: 1.7rem;
}

.customer-invoice-stats small {
  color: #10b981;
}

.customer-invoice-list {
  border: 1px solid #dfe3e8;
  border-radius: 4px;
  background: white;
  overflow: hidden;
}

.customer-invoice-list header,
.customer-invoice-list article {
  display: grid;
  grid-template-columns: minmax(250px, 1fr) 120px 140px 120px 120px 170px;
  gap: 16px;
  align-items: center;
  padding: 14px 22px;
}

.customer-invoice-list header {
  background: #fbfbfb;
  color: #64748b;
}

.customer-invoice-list article {
  border-top: 1px solid #e5e7eb;
}

.invoice-name {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
}

.invoice-name > svg {
  width: 38px;
  height: 38px;
  border-radius: 4px;
  background: #f1f5f9;
  padding: 9px;
}

.invoice-name span,
.customer-invoice-list small {
  display: block;
  margin-top: 4px;
  color: #64748b;
}

.invoice-name a {
  display: inline-block;
  margin-top: 6px;
  color: #0b65c2;
  text-decoration: none;
}

.customer-invoice-list em {
  width: max-content;
  border-radius: 4px;
  background: #fff4d9;
  color: #d99000;
  padding: 5px 9px;
  font-style: normal;
  text-transform: uppercase;
}

.customer-invoice-list em.is-paid {
  background: #dff7ef;
  color: #0c8c62;
}

.customer-invoice-list article > div:last-child,
.customer-invoice-list footer div {
  display: flex;
  gap: 8px;
  align-items: center;
}

.customer-invoice-list button {
  min-height: 38px;
  border: 1px solid #dfe3e8;
  border-radius: 4px;
  background: white;
  padding: 0 14px;
  font: inherit;
}

.customer-invoice-list button.is-pay {
  border-color: transparent;
  background: #10b981;
  color: white;
  font-weight: 700;
}

.customer-invoice-list footer {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  border-top: 1px solid #e5e7eb;
  padding: 12px 22px;
  color: #64748b;
}

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

.customer-kora-head {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
}

.customer-kora-head > svg {
  width: 42px;
  height: 42px;
  color: #1f4cb8;
}

.customer-kora-head h2,
.customer-kora-head p {
  margin: 0;
}

.customer-kora-head p {
  color: #64748b;
  margin-top: 6px;
}

.customer-kora-main,
.customer-kora-side {
  display: grid;
  gap: 18px;
}

.customer-kora-main,
.customer-kora-side section {
  min-width: 0;
}

.kora-hero-card,
.kora-help-grid,
.kora-chat-box,
.kora-chips,
.kora-recent,
.customer-kora-side section {
  border: 1px solid #dfe3e8;
  border-radius: 6px;
  background: white;
}

.kora-hero-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 260px;
  gap: 20px;
  align-items: center;
  min-height: 250px;
  padding: 34px;
  background: linear-gradient(135deg, #f7f8ff, #f8fffc);
}

.kora-hero-card span {
  display: inline-block;
  border-radius: 6px;
  background: #dce7ff;
  color: #1f4cb8;
  padding: 5px 9px;
  font-weight: 700;
}

.kora-hero-card h3 {
  margin: 24px 0 14px;
  font-size: clamp(2rem, 4vw, 3rem);
}

.kora-hero-card p {
  margin: 0;
  max-width: 520px;
  color: #334155;
  font-size: 1.15rem;
  line-height: 1.6;
}

.kora-bot-face {
  position: relative;
  display: grid;
  place-items: center;
  justify-self: center;
  width: 170px;
  height: 210px;
  border-radius: 80px 80px 54px 54px;
  background: #f8fafc;
  border: 1px solid #dfe3e8;
}

.kora-bot-face i {
  width: 116px;
  height: 70px;
  border-radius: 32px;
  background: #061b26;
}

.kora-bot-face i::before {
  content: "";
  display: block;
  width: 54px;
  height: 18px;
  margin: 24px auto 0;
  border-bottom: 5px solid #10b981;
  border-left: 5px solid #10b981;
  border-right: 5px solid #10b981;
  border-radius: 0 0 30px 30px;
}

.kora-bot-face b {
  display: grid;
  place-items: center;
  position: absolute;
  bottom: 28px;
  width: 48px;
  height: 58px;
  border: 3px solid #10b981;
  color: #0f172a;
}

.kora-help-grid {
  display: grid;
  gap: 14px;
  padding: 18px;
}

.kora-help-grid h3 {
  margin: 0;
}

.kora-help-grid > div {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
}

.kora-help-grid button {
  display: grid;
  gap: 8px;
  justify-items: start;
  min-height: 130px;
  border: 1px solid #dfe3e8;
  border-radius: 6px;
  background: white;
  padding: 14px;
  color: #0f172a;
  font: inherit;
  text-align: left;
}

.kora-help-grid button svg {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: #e8f6f3;
  color: #10b981;
  padding: 8px;
}

.kora-help-grid small {
  color: #64748b;
}

.kora-chat-box {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 42px;
  gap: 10px;
  padding: 14px;
}

.kora-chat-box textarea {
  min-height: 74px;
  border: 0;
  outline: 0;
  resize: vertical;
  font: inherit;
}

.kora-chat-box button {
  align-self: end;
  border: 0;
  background: transparent;
  color: #10b981;
}

.kora-chips {
  display: flex;
  gap: 10px;
  border: 0;
  background: transparent;
  flex-wrap: wrap;
}

.kora-chips button {
  min-height: 34px;
  border: 1px solid #dfe3e8;
  border-radius: 5px;
  background: white;
  padding: 0 14px;
  font: inherit;
}

.kora-recent {
  display: grid;
  overflow: hidden;
}

.kora-recent h3 {
  margin: 0;
  padding: 14px 18px;
}

.kora-recent a {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr) auto 16px;
  gap: 3px 12px;
  align-items: center;
  border-top: 1px solid #e5e7eb;
  padding: 10px 18px;
  color: #0f172a;
  text-decoration: none;
}

.kora-recent a:last-child {
  display: block;
  color: #10b981;
  text-align: center;
}

.kora-recent svg:first-child {
  grid-row: 1 / span 2;
  color: #10b981;
}

.kora-recent span {
  grid-column: 2;
  color: #64748b;
}

.kora-recent time {
  grid-row: 1 / span 2;
  color: #334155;
}

.customer-kora-side section {
  display: grid;
  gap: 12px;
  padding: 18px;
}

.customer-kora-side h3 {
  margin: 0;
}

.customer-kora-side a,
.customer-kora-side p {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  margin: 0;
  color: #0f172a;
  text-decoration: none;
}

.customer-kora-side span {
  color: #10b981;
}

.kora-tip {
  background: #f7fffc !important;
}

.kora-tip > svg {
  width: 42px;
  height: 42px;
  color: #10b981;
}

.kora-tip p {
  display: block;
  color: #334155;
}

.kora-tip a {
  justify-content: center;
  width: max-content;
  min-height: 40px;
  border-radius: 4px;
  background: #008a78;
  color: white;
  padding: 0 18px;
  font-weight: 700;
}

.kora-floating-chat {
  position: fixed;
  right: 28px;
  bottom: 24px;
  z-index: 20;
  border-radius: 999px;
  background: #061b26;
  color: white;
  padding: 14px 22px;
  text-decoration: none;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.22);
}

/* Compact list rhythm across client area. */
.customer-mini-list a,
.customer-mini-list button,
.customer-ticket-list article,
.customer-domain-list article,
.customer-kb-articles a,
.customer-dns-records th,
.customer-dns-records td,
.customer-table article,
.customer-service-item,
.customer-ticket-conversation article {
  padding-top: 8px;
  padding-bottom: 8px;
}

.customer-ticket-list > header,
.customer-domain-list > header {
  padding-top: 10px;
  padding-bottom: 10px;
}

.customer-ticket-list footer,
.customer-domain-list footer,
.customer-service-list footer {
  padding-top: 10px;
  padding-bottom: 10px;
}

.customer-services-list .customer-feature-service,
.customer-services-list .customer-service-row {
  min-height: 64px;
  padding-top: 8px;
  padding-bottom: 8px;
}

.customer-service-list .customer-service-item {
  min-height: 92px;
}

.customer-kb-articles h3 {
  padding-top: 12px;
}

.customer-domains-page,
.customer-domain-detail-page {
  display: grid;
  gap: 22px;
}

.customer-domain-list {
  display: grid;
  border: 1px solid #dfe3e8;
  border-radius: 4px;
  background: white;
  overflow: hidden;
}

.customer-domain-list > header,
.customer-domain-list article {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) 130px 130px 140px 130px 150px;
  gap: 22px;
  align-items: center;
  padding: 18px 24px;
}

.customer-domain-list > header {
  background: #fbfbfb;
  color: #64748b;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
}

.customer-domain-list article {
  border-top: 1px solid #e5e7eb;
}

.customer-domain-name {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
}

.customer-domain-name > span {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 8px;
  background: #f1f5f7;
  color: #334155;
}

.customer-domain-name svg {
  width: 34px;
  height: 34px;
}

.customer-domain-name strong,
.customer-domain-name small,
.customer-domain-name a {
  display: block;
}

.customer-domain-name small {
  margin: 7px 0;
  color: #64748b;
}

.customer-domain-name a {
  color: #0057b8;
  text-decoration: none;
}

.customer-domain-list em,
.customer-domain-summary em {
  width: max-content;
  border-radius: 4px;
  background: #dff7ef;
  color: #0c8c62;
  padding: 5px 9px;
  font-style: normal;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
}

.customer-domain-list article div > span,
.customer-domain-list article small {
  display: block;
  color: #64748b;
  margin-top: 7px;
}

.customer-switch {
  display: inline-block;
  width: 42px;
  height: 22px;
  border-radius: 999px;
  background: #24b86a;
  position: relative;
}

.customer-switch::after {
  content: "";
  position: absolute;
  top: 4px;
  right: 4px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: white;
}

.customer-row-action {
  justify-self: end;
  border: 1px solid #dfe3e8;
  border-radius: 4px;
  color: #111827;
  padding: 10px 16px;
  text-decoration: none;
}

.customer-domain-list footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #e5e7eb;
  padding: 18px 24px;
  color: #64748b;
}

.customer-domain-list footer div {
  display: flex;
  gap: 10px;
  align-items: center;
}

.customer-domain-list footer button,
.customer-domain-list footer b {
  min-width: 40px;
  min-height: 40px;
  display: grid;
  place-items: center;
  border: 1px solid #dfe3e8;
  border-radius: 4px;
  background: white;
  color: #1f2937;
}

.customer-domain-list footer b {
  border-color: #bce9de;
  background: #eefdf9;
  color: var(--teal);
}

.customer-domain-detail-head {
  display: grid;
  grid-template-columns: 48px 1fr auto;
  gap: 20px;
  align-items: center;
}

.customer-domain-detail-head > a,
.customer-domain-detail-head button {
  display: inline-grid;
  place-items: center;
  min-height: 48px;
  border: 1px solid #dfe3e8;
  border-radius: 4px;
  background: white;
  color: #111827;
  padding: 0 18px;
  text-decoration: none;
  font: inherit;
}

.customer-domain-detail-head h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 2.6rem);
}

.customer-domain-subnav {
  display: flex;
  flex-wrap: wrap;
  gap: 34px;
  border-bottom: 1px solid #dfe3e8;
}

.customer-domain-subnav a {
  padding: 0 0 16px;
  color: #334155;
  text-decoration: none;
}

.customer-domain-subnav a.is-active {
  border-bottom: 3px solid #20a957;
  color: #111827;
}

.customer-domain-summary {
  display: grid;
  grid-template-columns: minmax(300px, 1fr) repeat(4, minmax(120px, 0.5fr));
  gap: 22px;
  align-items: center;
  border: 1px solid #dfe3e8;
  border-radius: 4px;
  background: white;
  padding: 24px;
}

.customer-domain-summary > div:not(.customer-domain-name) {
  border-left: 1px solid #e5e7eb;
  padding-left: 22px;
}

.customer-domain-summary span,
.customer-domain-summary small {
  display: block;
  color: #64748b;
  margin-bottom: 8px;
}

.customer-domain-actions {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.customer-domain-actions article {
  display: grid;
  justify-items: center;
  gap: 12px;
  border: 1px solid #dfe3e8;
  border-radius: 4px;
  background: white;
  padding: 28px 20px;
  text-align: center;
}

.customer-domain-actions svg {
  width: 58px;
  height: 58px;
  border-radius: 999px;
  background: #e8f6f3;
  color: #20a957;
  padding: 14px;
}

.customer-domain-actions h3,
.customer-domain-actions p {
  margin: 0;
}

.customer-domain-actions p {
  color: #64748b;
  line-height: 1.45;
}

.customer-domain-actions button {
  min-height: 40px;
  border: 1px solid #dfe3e8;
  border-radius: 4px;
  background: white;
  padding: 0 18px;
  font: inherit;
}

.customer-domain-activity {
  border: 1px solid #dfe3e8;
  border-radius: 4px;
  background: white;
  overflow: hidden;
}

.customer-domain-activity header,
.customer-domain-activity div {
  display: grid;
  grid-template-columns: minmax(180px, 0.4fr) 1fr minmax(120px, 0.3fr);
  gap: 20px;
  align-items: center;
  padding: 16px 24px;
}

.customer-domain-activity header {
  grid-template-columns: 1fr auto;
  border-bottom: 1px solid #e5e7eb;
}

.customer-domain-activity h3 {
  margin: 0;
}

.customer-domain-activity a {
  color: #0057b8;
  text-decoration: none;
}

.customer-domain-dns-page {
  display: grid;
  gap: 22px;
}

.customer-profile-page {
  display: grid;
  gap: 22px;
}

.customer-kb-page {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 290px;
  gap: 22px;
}

.customer-kb-page > header,
.customer-kb-tools,
.customer-kb-categories,
.customer-kb-articles {
  grid-column: 1;
}

.customer-kb-side {
  grid-column: 2;
  grid-row: 2 / span 4;
  display: grid;
  gap: 18px;
}

.customer-kb-tools {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 230px;
  gap: 22px;
}

.customer-kb-tools a {
  min-height: 52px;
}

.customer-kb-search-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 14px;
}

.customer-kb-tools label,
.customer-kb-search-form label,
.customer-kb-tools button {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 52px;
  border: 1px solid #dfe3e8;
  border-radius: 4px;
  background: white;
  padding: 0 16px;
  color: #334155;
  font: inherit;
}

.customer-kb-tools input {
  width: 100%;
  border: 0;
  outline: 0;
  font: inherit;
}

.customer-kb-search-form input {
  min-height: 0;
}

.customer-kb-search-form button {
  border: 1px solid #dfe3e8;
  border-radius: 4px;
  background: #fff;
  padding: 0 16px;
}

.customer-kb-categories,
.customer-kb-articles,
.customer-kb-side section {
  display: grid;
  gap: 14px;
}

.customer-kb-categories h3,
.customer-kb-articles h3,
.customer-kb-side h3 {
  margin: 0;
}

.customer-kb-categories > div {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
}

.customer-kb-categories a,
.customer-kb-side section {
  border: 1px solid #dfe3e8;
  border-radius: 4px;
  background: white;
  padding: 18px;
}

.customer-kb-categories a {
  display: grid;
  justify-items: center;
  gap: 10px;
  color: #111827;
  text-align: center;
  text-decoration: none;
}

.customer-kb-categories a > svg {
  width: 54px;
  height: 54px;
  border-radius: 999px;
  background: #e8f6f3;
  color: var(--teal);
  padding: 14px;
}

.customer-kb-categories a:nth-child(3) > svg {
  background: #f0e6ff;
  color: #7c3aed;
}

.customer-kb-categories a:nth-child(4) > svg {
  background: #fff4d9;
  color: #d99000;
}

.customer-kb-categories a:nth-child(6) > svg {
  background: #ffe8e8;
  color: #ef4444;
}

.customer-kb-categories span,
.customer-kb-categories small {
  color: #64748b;
}

.customer-kb-categories small {
  color: var(--teal);
}

.customer-kb-articles {
  border: 1px solid #dfe3e8;
  border-radius: 4px;
  background: white;
  overflow: hidden;
}

.customer-kb-articles h3 {
  padding: 18px 20px 0;
}

.customer-kb-article-item {
  display: grid;
  grid-template-columns: 24px 76px minmax(0, 1fr) auto;
  gap: 5px 14px;
  align-items: center;
  border-top: 1px solid #e5e7eb;
  padding: 14px 20px;
  color: #111827;
  text-decoration: none;
}

.customer-kb-articles em {
  border-radius: 4px;
  background: #dff7ef;
  color: #0c8c62;
  padding: 4px 8px;
  font-style: normal;
  font-size: 0.8rem;
}

.customer-kb-articles strong,
.customer-kb-articles span {
  grid-column: 3;
}

.customer-kb-articles span,
.customer-kb-articles small,
.customer-kb-side p,
.customer-kb-side span {
  color: #64748b;
}

.customer-kb-articles small {
  grid-column: 4;
  grid-row: 1 / span 2;
}

.customer-kb-article-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  padding: 18px 20px 0;
}

.customer-kb-article-head h3 {
  margin: 0;
  padding: 0;
}

.customer-kb-article-head small,
.customer-kb-empty h4,
.customer-kb-empty p {
  margin: 0;
}

.customer-kb-empty {
  display: grid;
  gap: 8px;
  padding: 20px;
}

.customer-kb-empty .customer-service-outline-btn {
  width: max-content;
}

.customer-kb-article-detail {
  display: grid;
  gap: 16px;
  padding: 0 20px 20px;
}

.customer-kb-article-hero {
  display: grid;
  gap: 14px;
  border-bottom: 1px dashed #d9e2ea;
  padding-bottom: 16px;
}

.customer-kb-block#kb-before-start {
  background: #f2fff6;
  border: 1px solid #c9ebd8;
  border-radius: 8px;
  padding: 14px;
}

.customer-kb-article-hero-main {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 12px;
  align-items: center;
}

.customer-kb-article-hero-icon {
  width: 54px;
  height: 54px;
  border-radius: 999px;
  background: #e8f6f3;
  color: var(--teal);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.customer-kb-article-hero-main svg,
.customer-kb-article-hero-main > div svg {
  width: 23px;
  height: 23px;
}

.customer-kb-article-hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-bottom: 6px;
}

.customer-kb-article-pill {
  display: inline-flex;
  align-items: center;
  min-height: 25px;
  padding: 0 10px;
  border-radius: 999px;
  background: #e5f7ef;
  color: #0c6b47;
  font-size: 0.82rem;
  font-weight: 700;
}

.customer-kb-article-hero-meta span:not(.customer-kb-article-pill) {
  color: #64748b;
  font-size: 0.88rem;
}

.customer-kb-article-hero h4 {
  margin: 0;
}

.customer-kb-article-hero p {
  margin: 0;
  color: #334155;
}

.customer-kb-article-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.customer-kb-article-action-btn {
  min-height: 36px;
  border: 1px solid #d9e2ea;
  background: #fff;
  color: #0f172a;
  border-radius: 4px;
  padding: 0 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  font: inherit;
}

.customer-kb-article-action-btn svg {
  width: 16px;
  height: 16px;
}

.customer-kb-article-action-btn:hover {
  background: #f4faf6;
}

.customer-kb-article-feedback[hidden] {
  display: none;
}

.customer-kb-article-feedback {
  margin: 0;
  min-height: 18px;
  color: #0f766e;
  font-size: 0.88rem;
}

.customer-kb-block {
  border-top: 1px dashed #d9e2ea;
  padding-top: 14px;
  display: grid;
  gap: 12px;
}

.customer-kb-block h5,
.customer-kb-block h6 {
  margin: 0;
}

.customer-kb-checklist,
.customer-kb-info-grid,
.customer-kb-timeline {
  display: grid;
  gap: 10px;
}

.customer-kb-checklist-item {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 10px;
  color: #334155;
}

.customer-kb-checklist-item svg {
  width: 18px;
  height: 18px;
  color: #0c8c62;
  margin-top: 2px;
}

.customer-kb-timeline-item {
  position: relative;
  display: grid;
  grid-template-columns: 30px 1fr;
  gap: 10px;
  align-items: start;
  padding-bottom: 12px;
}

.customer-kb-timeline-dot {
  width: 30px;
  height: 30px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--teal);
  color: #fff;
  font-size: .85rem;
  font-weight: 600;
  position: relative;
  z-index: 1;
}

.customer-kb-timeline-item::after {
  content: "";
  position: absolute;
  left: 14px;
  top: 28px;
  bottom: 0;
  width: 2px;
  background: #d9e2ea;
}

.customer-kb-timeline-item:last-child::after {
  content: none;
}

.customer-kb-timeline-item h6 {
  margin: 0;
  color: #0f172a;
}

.customer-kb-timeline-item p {
  margin: 4px 0 0;
  color: #334155;
}

.customer-kb-step-media {
  margin-top: 10px;
  padding: 10px 12px;
  border: 1px dashed #d9e2ea;
  border-radius: 6px;
  background: #f8fafc;
  color: #334155;
  font-size: 0.84rem;
}

.customer-kb-info-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.customer-kb-info-box {
  border: 1px solid #d9e2ea;
  border-radius: 6px;
  padding: 12px;
  display: grid;
  gap: 8px;
  background: #fff;
}

.customer-kb-info-box--consejo {
  border-color: #9de5c4;
  background: #f2fff6;
}

.customer-kb-info-box--informacion {
  border-color: #a8d9ff;
  background: #f4fbff;
}

.customer-kb-info-box--advertencia {
  border-color: #ffe08a;
  background: #fffbeb;
}

.customer-kb-info-box-title {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #0f172a;
}

.customer-kb-info-box-icon {
  display: inline-flex;
}

.customer-kb-info-box svg {
  width: 16px;
  height: 16px;
  color: #0f766e;
}

.customer-kb-info-box--advertencia svg {
  color: #b45309;
}

.customer-kb-info-box p {
  margin: 0;
  color: #334155;
}

.customer-kb-article-head {
  position: relative;
}

.customer-kb-article-detail-head {
  display: grid;
  gap: 8px;
}

.customer-kb-article-detail-head h4 {
  margin: 0;
}

.customer-kb-article-detail-head p {
  margin: 0;
  color: #334155;
}

.customer-kb-article-detail-head small {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px 10px;
  color: #64748b;
}

.customer-kb-article-detail-head svg,
.customer-kb-faq summary svg {
  width: 18px;
  height: 18px;
}

.customer-kb-article-section {
  display: grid;
  gap: 10px;
  border-top: 1px solid #e5e7eb;
  padding-top: 14px;
}

.customer-kb-article-section h5,
.customer-kb-faq h5,
.customer-kb-related h5 {
  margin: 0;
}

.customer-kb-article-section ul,
.customer-kb-article-section ol {
  margin: 0;
  padding-left: 18px;
  display: grid;
  gap: 6px;
}

.customer-kb-article-section li {
  color: #334155;
}

.customer-kb-faq {
  border-top: 1px solid #e5e7eb;
  padding-top: 14px;
  display: grid;
  gap: 10px;
}

.customer-kb-faq-list {
  display: grid;
  gap: 10px;
}

.customer-kb-faq details {
  border: 1px solid #dfe3e8;
  border-radius: 6px;
  padding: 10px 12px;
  background: #fff;
  transition: border-color 160ms ease, background-color 160ms ease;
  overflow: hidden;
}

.customer-kb-faq summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-weight: 600;
  color: #0f172a;
  list-style: none;
}

.customer-kb-faq summary::-webkit-details-marker {
  display: none;
}

.customer-kb-faq summary i {
  display: inline-flex;
  transition: transform 200ms ease;
  color: #64748b;
}

.customer-kb-faq details[open] summary i {
  transform: rotate(180deg);
}

.customer-kb-faq p {
  margin: 0;
  color: #334155;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 180ms ease, opacity 180ms ease, margin-top 180ms ease;
}

.customer-kb-faq details[open] {
  background: #fafcfe;
}

.customer-kb-faq details[open] p {
  max-height: 420px;
  margin-top: 10px;
  opacity: 1;
}

.customer-kb-related {
  border-top: 1px solid #e5e7eb;
  padding-top: 14px;
  display: grid;
  gap: 10px;
}

.customer-kb-related > div {
  display: grid;
  gap: 8px;
}

.customer-kb-related .customer-quick-action-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  min-height: 46px;
  border: 1px solid #dfe3e8;
  border-radius: 6px;
  padding: 0 12px;
  text-decoration: none;
  color: #0f172a;
}

.customer-kb-related .customer-quick-action-btn:hover {
  background: #f8fcff;
}

.customer-kb-side > section > a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 42px;
  border-radius: 4px;
  background: #1fb56c;
  color: white;
  padding: 0 14px;
  text-decoration: none;
  font-weight: 700;
}

.customer-kb-side > section > a:is(.button) {
  margin: 0;
  justify-content: center;
}

.customer-kb-side ol,
.customer-kb-toc-list {
  margin: 0;
  padding-left: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}

.customer-kb-side ol {
  margin-top: 2px;
}

.customer-kb-side ol a,
.customer-kb-toc-link {
  justify-content: flex-start;
  width: 100%;
  min-height: 34px;
  border-radius: 4px;
  background: transparent;
  color: #0f172a;
  padding: 0;
  text-decoration: none;
  border: 0;
  font-weight: 500;
}

.customer-kb-side ol a:hover,
.customer-kb-toc-link:hover,
.customer-kb-toc-link.is-active {
  background: #f4fbff;
}

.customer-kb-toc-link.is-active {
  color: #0c8c62;
  font-weight: 700;
}

.customer-kb-side ol {
  display: grid;
  gap: 12px;
}

.customer-kb-side li span {
  display: block;
  margin-top: 2px;
}

.customer-kb-side div {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.customer-kb-toc-list li {
  border: 1px solid #e5e7eb;
  border-radius: 6px;
  background: #fff;
}

.customer-kb-feedback-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.customer-kb-feedback-actions button {
  min-height: 38px;
  border: 1px solid #dfe3e8;
  background: white;
  color: #0f172a;
  border-radius: 4px;
}

.customer-kb-side button {
  min-height: 38px;
  border: 1px solid #dfe3e8;
  border-radius: 4px;
  background: white;
  font: inherit;
}

.customer-notifications-page {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 290px;
  gap: 22px;
}

.customer-notifications-page > header {
  grid-column: 1;
  padding: 0;
  border-bottom: 1px solid #dfe3e8;
}

.customer-notifications-page > header h2 {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 6px;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
}

.customer-notifications-page > header p {
  margin: 0 0 10px;
}

.customer-notification-actions {
  grid-column: 1 / -1;
  grid-row: 1;
  justify-self: end;
  align-self: start;
  display: flex;
  gap: 16px;
}

.customer-notification-actions button,
.customer-notification-side button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 34px;
  border: 1px solid #dfe3e8;
  border-radius: 4px;
  background: white;
  color: #334155;
  padding: 0 16px;
  font: inherit;
}

.customer-notification-list {
  grid-column: 1;
  border: 1px solid #dfe3e8;
  border-radius: 4px;
  background: white;
  overflow: hidden;
}

.customer-notification-list nav {
  display: flex;
  gap: 34px;
  border-bottom: 1px solid #e5e7eb;
  padding: 0 22px;
}

.customer-notification-list nav a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 40px;
  border-bottom: 2px solid transparent;
  color: #334155;
  text-decoration: none;
}

.customer-notification-list nav a.is-active {
  border-color: #1fb56c;
  color: #111827;
}

.customer-notification-list b,
.customer-notification-side b {
  display: inline-grid;
  place-items: center;
  min-width: 24px;
  min-height: 24px;
  border-radius: 999px;
  background: #e5e7eb;
  color: #111827;
  font-size: 0.82rem;
}

.customer-notification-list > a {
  display: grid;
  grid-template-columns: 8px 44px minmax(0, 1fr) 120px 92px 16px;
  grid-template-rows: auto auto;
  gap: 3px 14px;
  align-items: center;
  border-top: 1px solid #e5e7eb;
  padding: 10px 22px;
  color: #111827;
  text-decoration: none;
}

.customer-notification-list > a i {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #1684ff;
}

.customer-notification-list > a > svg:first-of-type {
  grid-column: 2;
  grid-row: 1 / span 2;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: #fff4d9;
  color: #d99000;
  padding: 11px;
}

.customer-notification-list strong {
  grid-column: 3;
  grid-row: 1;
}

.customer-notification-list span {
  grid-column: 3;
  grid-row: 2;
}

.customer-notification-list span,
.customer-notification-list time,
.customer-notification-side p,
.customer-notification-side span {
  color: #64748b;
}

.customer-notification-list em {
  grid-column: 4;
  grid-row: 1 / span 2;
  align-self: center;
  border-radius: 5px;
  background: #fff4d9;
  color: #d99000;
  padding: 5px 9px;
  font-style: normal;
  font-size: 0.8rem;
}

.customer-notification-list time {
  grid-column: 5;
  grid-row: 1 / span 2;
  align-self: center;
}

.customer-notification-list > a > svg:last-child {
  grid-column: 6;
  grid-row: 1 / span 2;
  width: 14px;
  height: 14px;
}

.customer-notification-side {
  grid-column: 2;
  grid-row: 2 / span 3;
  display: grid;
  gap: 12px;
}

.customer-notification-side section {
  display: grid;
  gap: 8px;
  border: 1px solid #dfe3e8;
  border-radius: 4px;
  background: white;
  padding: 10px 18px;
}

.customer-notification-side section:first-child {
  gap: 0;
  padding: 0;
}

.customer-notification-side section:first-child h3 {
  min-height: 46px;
  display: flex;
  align-items: center;
  margin: 0;
  padding: 0 20px;
}

.customer-notification-side h3,
.customer-notification-side p {
  margin: 0;
}

.customer-notification-side a {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr) 26px;
  align-items: center;
  gap: 12px;
  min-height: 48px;
  padding: 0 20px;
  color: #334155;
  text-decoration: none;
}

.customer-notification-side a.is-active {
  background: #edf8f5;
  margin-inline: 0;
  padding-inline: 20px;
}

.customer-notification-side a svg {
  width: 16px;
  height: 16px;
}

.customer-notification-side a b {
  justify-self: center;
}

.customer-notification-side section:last-child a {
  justify-content: center;
  border-radius: 4px;
  background: #1fb56c;
  color: white;
  padding: 0 18px;
  font-weight: 700;
}

.customer-notification-side strong {
  float: right;
  color: #0a8f52;
}

.customer-notification-side section:nth-child(2) p {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
  min-height: 28px;
}

.customer-notification-side section:nth-child(2) span {
  justify-self: end;
}

.customer-notification-side section:nth-child(2) button {
  margin-top: 4px;
}

.customer-notification-side section:last-child a {
  display: inline-flex;
  grid-template-columns: none;
  width: auto;
  min-height: 34px;
  max-width: max-content;
  justify-self: start;
}

.customer-notification-side section:last-child {
  gap: 6px;
}

.customer-notification-side section:last-child p {
  line-height: 1.35;
}

.customer-support-template {
  gap: 14px;
  padding: 14px;
  background: white;
}

.support-template-head {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
}

.support-template-head > svg {
  width: 52px;
  height: 52px;
  border-radius: 999px;
  background: #e8f8f3;
  color: var(--teal);
  padding: 14px;
}

.support-template-head h3 {
  margin: 0;
  font-size: 1rem;
}

.support-template-head p {
  margin: 6px 0 0;
  color: #64748b;
  font-size: 0.9rem;
  line-height: 1.35;
}

.customer-support-template .support-template-cta {
  display: flex;
  grid-template-columns: none;
  justify-content: center;
  gap: 10px;
  width: 100%;
  max-width: none;
  min-height: 42px;
  border-radius: 6px;
  background: #00a86b;
  color: white;
  padding: 0 12px;
  font-size: 0.92rem;
  font-weight: 700;
  box-shadow: 0 10px 20px rgba(0, 168, 107, 0.18);
}

.customer-support-template .support-template-link {
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr) 16px;
  gap: 4px 10px;
  align-items: center;
  min-height: 40px;
  border: 1px solid #dfe3e8;
  border-radius: 6px;
  background: #fbfdfd;
  color: #64748b;
  padding: 8px 10px;
  font-size: 0.84rem;
  font-weight: 400;
}

.support-template-link span {
  grid-column: 2;
  color: #64748b;
}

.support-template-link strong {
  grid-column: 2;
  color: #00a86b;
}

.support-template-link svg:last-child {
  grid-column: 3;
  grid-row: 1 / span 2;
}

.customer-support-template-wide {
  grid-column: 1 / -1;
  display: grid;
  gap: 26px;
  border: 1px solid #dfe3e8;
  border-radius: 6px;
  background: white;
  padding: 34px 38px;
}

.customer-support-template-wide .support-template-head {
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 34px;
}

.customer-support-template-wide .support-template-head > svg {
  width: 190px;
  height: 190px;
  border-radius: 42% 58% 53% 47%;
  background: #e8f8f3;
  color: #008a78;
  padding: 52px;
}

.customer-support-template-wide .support-template-head h3 {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.05;
}

.customer-support-template-wide .support-template-head p {
  font-size: clamp(1.25rem, 2.3vw, 2rem);
  line-height: 1.45;
}

.customer-support-template-wide .support-template-benefits {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.customer-support-template-wide .support-template-benefits span {
  grid-template-columns: 62px minmax(0, 1fr);
  gap: 2px 16px;
  border-right: 1px solid #dfe3e8;
}

.customer-support-template-wide .support-template-benefits span:last-child {
  border-right: 0;
}

.customer-support-template-wide .support-template-benefits svg {
  width: 56px;
  height: 56px;
  padding: 15px;
}

.customer-support-template-wide .support-template-benefits strong {
  font-size: 1.2rem;
}

.customer-support-template-wide .support-template-benefits small {
  font-size: 1rem;
}

.customer-support-template-wide .support-template-cta {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 86px;
  border-radius: 8px;
  background: #00a86b;
  color: white;
  padding: 0 42px;
  font-size: clamp(1.35rem, 2.4vw, 2rem);
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 14px 24px rgba(0, 168, 107, 0.2);
}

.customer-support-template-wide .support-template-cta svg:first-child {
  justify-self: end;
  width: 40px;
  height: 40px;
}

.customer-support-template-wide .support-template-cta svg:last-child {
  justify-self: end;
  width: 42px;
  height: 42px;
}

.customer-support-template-wide .support-template-link {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr) auto 20px;
  gap: 12px;
  align-items: center;
  min-height: 70px;
  border: 1px solid #dfe3e8;
  border-radius: 8px;
  background: #fbfdfd;
  color: #64748b;
  padding: 0 22px;
  text-decoration: none;
}

.customer-support-template-wide .support-template-link span,
.customer-support-template-wide .support-template-link strong,
.customer-support-template-wide .support-template-link svg:last-child {
  grid-column: auto;
  grid-row: auto;
}

.customer-support-template-wide .support-template-link strong {
  color: #00a86b;
  font-size: 1.1rem;
  white-space: nowrap;
}

.customer-profile-tabs {
  display: flex;
  gap: 30px;
  overflow-x: auto;
  border-bottom: 1px solid #dfe3e8;
}

.customer-profile-tabs button {
  white-space: nowrap;
  border: 0;
  border-bottom: 2px solid transparent;
  background: transparent;
  padding: 0 0 14px;
  color: #334155;
  font: inherit;
  text-decoration: none;
  cursor: pointer;
}

.customer-profile-tabs button.is-active {
  border-color: #1fb56c;
  color: #111827;
}

.customer-profile-tabs button:focus-visible {
  outline: 2px solid rgba(31, 181, 108, 0.28);
  outline-offset: 3px;
}

.customer-profile-tab-panel {
  display: block;
}

.customer-profile-tab-panel[hidden] {
  display: none;
}

.customer-profile-photo-panel {
  display: grid;
  grid-template-columns: 320px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
}

.customer-profile-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 22px;
  align-items: start;
}

.customer-profile-side {
  display: grid;
  gap: 20px;
}

.customer-profile-card {
  display: grid;
  gap: 18px;
  border: 1px solid #dfe3e8;
  border-radius: 4px;
  background: white;
  padding: 24px;
}

.customer-profile-avatar {
  display: grid;
  place-items: center;
  justify-self: center;
  width: 104px;
  height: 104px;
  border-radius: 999px;
  background: #e5e7eb;
  color: #475569;
}

.customer-profile-avatar svg {
  width: 42px;
  height: 42px;
}

.customer-profile-card h3,
.customer-profile-card p {
  margin: 0;
}

.customer-profile-card p {
  color: #64748b;
}

.customer-profile-form {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  border: 1px solid #dfe3e8;
  border-radius: 4px;
  background: white;
  padding: 24px;
}

.customer-profile-form h3,
.customer-profile-form .is-wide {
  grid-column: 1 / -1;
}

.customer-profile-form h3 {
  margin: 0;
}

.customer-profile-form label {
  display: grid;
  gap: 7px;
  color: #334155;
}

.customer-profile-form label span {
  color: #64748b;
}

.customer-profile-form input,
.customer-profile-form select {
  min-height: 44px;
  border: 1px solid #dfe3e8;
  border-radius: 4px;
  padding: 0 12px;
  font: inherit;
  color: #111827;
  background: white;
}

.customer-profile-form button {
  justify-self: start;
}

.customer-profile-photo-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.customer-profile-photo-actions button,
.customer-profile-photo-actions a,
.customer-connection-list a {
  min-height: 42px;
  border: 1px solid #dfe3e8;
  border-radius: 4px;
  background: white;
  color: #111827;
  font: inherit;
}

.customer-profile-photo-actions button,
.customer-profile-photo-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
}

.customer-profile-photo-actions button:last-child,
.customer-profile-photo-actions a:last-child {
  color: #ef4444;
}

.customer-profile-photo-actions svg {
  width: 16px;
  height: 16px;
}

.customer-profile-avatar img {
  width: 100%;
  height: 100%;
  border-radius: inherit;
  object-fit: cover;
}

.customer-profile-sections {
  display: grid;
  gap: 18px;
  margin-top: 22px;
}

.customer-profile-section-form {
  scroll-margin-top: 110px;
}

.customer-profile-section-form p {
  margin: 0;
  color: #64748b;
}

.customer-check-row {
  display: flex !important;
  align-items: center;
  gap: 10px;
}

.customer-check-row input[type="checkbox"],
.customer-profile-section-form input[type="file"] {
  width: auto;
  min-height: 0;
  height: auto;
}

.customer-profile-section-form input[type="file"] {
  padding: 10px 12px;
}

.button.is-danger {
  background: #dc2626;
}

.customer-connection-list {
  display: grid;
  gap: 8px;
}

.customer-connection-list a {
  display: grid;
  grid-template-columns: 28px 1fr auto 18px;
  gap: 10px;
  align-items: center;
  padding: 0 12px;
  text-decoration: none;
}

.customer-connection-list strong {
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border-radius: 999px;
  background: #eef2ff;
  color: #0f172a;
  font-size: 0.8rem;
}

.customer-connection-list em {
  border-radius: 6px;
  background: #dff6ea;
  color: #0a8f52;
  padding: 4px 8px;
  font-style: normal;
  font-size: 0.82rem;
}

.customer-connection-list a:last-child em {
  background: #eef2f7;
  color: #64748b;
}

.customer-domain-detail-head p {
  margin: 8px 0 0;
  color: #64748b;
}

.customer-dns-servers {
  display: grid;
  grid-template-columns: 70px minmax(0, 1fr) auto;
  gap: 22px;
  align-items: center;
  border: 1px solid #dfe3e8;
  border-radius: 4px;
  background: white;
  padding: 24px;
}

.customer-dns-servers > span {
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  border-radius: 999px;
  background: #e8f6f3;
  color: #20a957;
  font-weight: 700;
}

.customer-dns-servers h3,
.customer-dns-servers p {
  margin: 0 0 8px;
}

.customer-dns-servers small {
  display: block;
  color: #334155;
  margin-top: 7px;
}

.customer-dns-servers button,
.customer-dns-records button {
  min-height: 40px;
  border: 1px solid #dfe3e8;
  border-radius: 4px;
  background: white;
  color: #111827;
  padding: 0 16px;
  font: inherit;
}

.customer-dns-records {
  border: 1px solid #dfe3e8;
  border-radius: 4px;
  background: white;
  overflow: hidden;
}

.customer-dns-records > header {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  padding: 18px 24px;
  border-bottom: 1px solid #e5e7eb;
}

.customer-dns-records h3 {
  margin: 0;
}

.customer-dns-records header div {
  display: flex;
  gap: 12px;
}

.customer-dns-records header button:last-child {
  border-color: transparent;
  background: #20a957;
  color: white;
}

.customer-dns-records table {
  width: 100%;
  border-collapse: collapse;
}

.customer-dns-records th,
.customer-dns-records td {
  padding: 15px 20px;
  border-bottom: 1px solid #e5e7eb;
  color: #334155;
  text-align: left;
}

.customer-dns-records th {
  background: #fbfbfb;
  color: #64748b;
  font-size: 0.82rem;
  text-transform: uppercase;
}

.customer-dns-records td:last-child {
  display: flex;
  gap: 10px;
}

.customer-dns-records td button {
  min-width: 38px;
  padding: 0;
}

.customer-dns-records td button:last-child {
  color: #e14b4b;
}

.customer-help-strip-blue {
  border-color: #c7def6;
  background: #f0f7ff;
}

.customer-help-strip-blue > svg {
  background: #2f80ed;
}

.customer-create-ticket-page .customer-help-strip {
  grid-template-columns: 54px 1fr auto auto;
}

.customer-create-ticket-page .customer-help-strip a {
  border: 1px solid #dfe3e8;
  background: white;
  color: #111827;
}

.customer-table {
  display: grid;
  gap: 10px;
}

.customer-table article {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  border: 1px solid #e1ebf0;
  border-radius: 5px;
  background: #fbfdfd;
  padding: 12px;
}

.customer-table div {
  min-width: 0;
}

.customer-table span {
  display: block;
  color: var(--muted);
  font-size: 0.72rem;
}

.customer-table strong {
  display: block;
  margin-top: 4px;
  overflow-wrap: anywhere;
  color: #102033;
  font-size: 0.9rem;
}

.customer-ticket-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 180px;
  gap: 12px;
  border-top: 1px solid var(--line);
  padding-top: 16px;
}

.customer-ticket-form label {
  display: grid;
  gap: 6px;
  color: var(--muted);
  font-size: 0.86rem;
}

.customer-ticket-form label:last-of-type {
  grid-column: 1 / -1;
}

.customer-ticket-form input,
.customer-ticket-form select,
.customer-ticket-form textarea {
  width: 100%;
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 0 12px;
  font: inherit;
}

.customer-ticket-form textarea {
  min-height: 110px;
  padding-top: 10px;
  resize: vertical;
}

.customer-ticket-form button {
  grid-column: 1 / -1;
  justify-self: start;
}

.kora-agent-page {
  display: grid;
  grid-template-columns: minmax(320px, 0.82fr) minmax(420px, 1fr);
  gap: clamp(34px, 7vw, 92px);
  align-items: center;
  min-height: 680px;
  padding: clamp(54px, 8vw, 104px) clamp(22px, 8vw, 120px);
  background:
    radial-gradient(circle at 78% 18%, rgba(39, 217, 242, 0.15), transparent 28%),
    linear-gradient(180deg, #f6f9fb 0%, #eef4f7 100%);
}

.kora-agent-copy {
  display: grid;
  justify-items: start;
  gap: 22px;
}

.kora-agent-copy h1 {
  margin: 0;
  font-size: clamp(4rem, 10vw, 8.5rem);
  line-height: 0.9;
  letter-spacing: 0;
}

.kora-agent-copy p {
  max-width: 620px;
  margin: 0;
  color: var(--muted);
  font-size: 1.16rem;
  line-height: 1.65;
}

.kora-agent-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.kora-agent-console {
  overflow: hidden;
  border: 1px solid rgba(92, 107, 120, 0.14);
  border-radius: 8px;
  background: white;
  box-shadow: 0 28px 74px rgba(29, 45, 60, 0.14);
}

.kora-console-head {
  display: grid;
  grid-template-columns: 124px 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 18px;
  border-bottom: 1px solid var(--line);
  background: #f7fafb;
}

.kora-console-head img {
  width: 124px;
  height: auto;
  object-fit: contain;
}

.kora-console-head strong,
.kora-console-head small {
  display: block;
}

.kora-console-head small,
.kora-console-chat .is-user,
.kora-flow-list small {
  color: var(--muted);
}

.kora-console-head > span {
  border-radius: 999px;
  background: #dff7ef;
  color: var(--teal);
  padding: 6px 10px;
  font-size: 0.82rem;
}

.kora-console-chat {
  display: grid;
  gap: 14px;
  min-height: 360px;
  padding: 28px;
  background:
    linear-gradient(90deg, rgba(18, 151, 146, 0.05) 1px, transparent 1px),
    linear-gradient(180deg, rgba(18, 151, 146, 0.05) 1px, transparent 1px),
    #fbfdfe;
  background-size: 34px 34px;
}

.kora-console-chat p {
  max-width: 78%;
  margin: 0;
  border-radius: 8px;
  padding: 14px 16px;
  line-height: 1.55;
}

.kora-console-chat .is-kora {
  justify-self: start;
  background: #e8f7f5;
  color: #0b4f4c;
}

.kora-console-chat .is-user {
  justify-self: end;
  background: white;
  border: 1px solid var(--line);
}

.kora-console-input {
  display: grid;
  grid-template-columns: 1fr 52px;
  gap: 10px;
  padding: 16px;
  border-top: 1px solid var(--line);
}

.kora-console-input input {
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 0 14px;
  font: inherit;
}

.kora-console-input button {
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 6px;
  background: var(--teal);
  color: white;
  cursor: pointer;
}

.kora-agent-modules {
  background: #f6f9fb;
}

.kora-agent-flow {
  display: grid;
  grid-template-columns: minmax(260px, 0.5fr) 1fr;
  gap: clamp(24px, 5vw, 58px);
  align-items: start;
}

.kora-agent-flow h2 {
  margin: 12px 0 0;
  max-width: 520px;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.12;
}

.kora-flow-list {
  display: grid;
  gap: 12px;
}

.kora-flow-list article {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 4px 16px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  padding: 18px;
}

.kora-flow-list span {
  grid-row: span 2;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #e3f6f3;
  color: var(--teal);
}

.cart-empty .customer-card {
  display: grid;
  justify-items: start;
  gap: 16px;
  max-width: 560px;
}

.cart-empty .customer-card > svg {
  width: 46px;
  height: 46px;
  padding: 12px;
  border-radius: 3px;
  background: #e3f6f3;
  color: var(--teal);
}

.cart-checkout-page {
  display: grid;
  gap: 18px;
}

.cart-checkout-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 18px;
  align-items: start;
}

.cart-page-items {
  display: grid;
  gap: 10px;
}

.cart-page-total {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 16px;
  border-top: 1px solid var(--line);
  padding-top: 14px;
  font-size: 1.05rem;
}

.cart-interest {
  display: grid;
  gap: 12px;
}

.cart-interest button {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  min-height: 54px;
  border: 1px solid var(--line);
  border-radius: 5px;
  background: #fbfdfd;
  color: var(--ink);
  padding: 0 14px;
  font: inherit;
  cursor: pointer;
  text-align: left;
}

.cart-interest button span {
  color: var(--teal);
  white-space: nowrap;
}

.cart-payment-form {
  display: grid;
  gap: 18px;
}

.cart-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.cart-payment-form label,
.cart-payment-methods label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 0.9rem;
}

.cart-payment-form input,
.cart-payment-form textarea {
  width: 100%;
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 0 12px;
  font: inherit;
}

.cart-payment-form textarea {
  min-height: 112px;
  padding-top: 10px;
  resize: vertical;
}

.cart-payment-methods {
  display: grid;
  gap: 10px;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 14px;
}

.cart-payment-methods legend {
  padding: 0 8px;
  color: #102033;
  font-weight: 700;
}

.cart-payment-methods label {
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
}

.cart-payment-methods small {
  color: #b96500;
}

.cart-success {
  display: grid;
  justify-items: start;
  gap: 14px;
}

.cart-success > svg {
  width: 48px;
  height: 48px;
  border-radius: 6px;
  background: #e3f6f3;
  color: var(--teal);
  padding: 12px;
}

.cart-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  gap: 30px;
  align-items: center;
  min-height: 250px;
  padding: 46px clamp(22px, 5vw, 78px);
  background:
    linear-gradient(90deg, rgba(7, 18, 39, .92), rgba(7, 24, 39, .62)),
    url("cart-hero-banner.png") center 48% / cover no-repeat,
    #071827;
  color: white;
}

.cart-hero h1 {
  margin: 12px 0 10px;
  font-size: clamp(2.1rem, 4vw, 3.2rem);
  letter-spacing: 0;
}

.cart-hero p,
.cart-hero aside span {
  margin: 0;
  color: #c9d6e2;
}

.cart-hero aside {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 8px 14px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 16px;
  background: rgba(255,255,255,.06);
  padding: 22px;
  box-shadow: 0 18px 45px rgba(0,0,0,.18);
}

.cart-hero aside svg {
  grid-row: span 2;
  width: 28px;
  height: 28px;
  color: white;
}

.cart-checkout-page {
  max-width: 1440px;
  margin: 0 auto;
  padding: 32px clamp(18px, 5vw, 70px) 42px;
}

.cart-stepper {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 18px;
}

.cart-stepper button {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
  border: 0;
  background: transparent;
  color: #52627a;
  font: inherit;
  font-size: .86rem;
  font-weight: 600;
  cursor: pointer;
}

.cart-stepper button:not(:last-child)::after {
  content: "";
  height: 1px;
  flex: 1;
  background: #d9e1ea;
}

.cart-stepper b {
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border-radius: 999px;
  background: #edf2f6;
  color: #0B1220;
  font-size: .78rem;
}

.cart-stepper svg {
  display: none;
}

.cart-stepper .is-active {
  color: #0B1220;
}

.cart-stepper .is-active b {
  background: #10B981;
  color: white;
  box-shadow: 0 8px 16px rgba(16,185,129,.18);
}

.cart-stepper .is-done b {
  background: #dff7ef;
  color: #047857;
}

.cart-payment-form section {
  display: grid;
  gap: 16px;
}

.cart-domain-fields {
  display: grid;
  gap: 10px;
  border: 1px solid #d9e1ea;
  padding: 14px;
}

.cart-domain-fields legend {
  padding: 0 6px;
  color: #0B1220;
  font-weight: 700;
}

.cart-domain-fields label {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #44546a;
}

.cart-domain-fields input[type="radio"] {
  width: 18px;
  height: 18px;
  min-height: 18px;
}

.cart-payment-form section[hidden] {
  display: none;
}

[data-cart-step][hidden],
.cart-account-gate[hidden] {
  display: none !important;
}

.cart-confirm-step p {
  margin: 0;
  color: #52627a;
}

.cart-confirm-step ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.cart-confirm-step li {
  display: flex;
  gap: 10px;
  align-items: center;
}

.cart-submit-button {
  background: #0B1220 !important;
}

.cart-checkout-grid {
  grid-template-columns: minmax(0, 1fr) 390px;
  gap: 24px;
}

.cart-main-flow {
  display: grid;
  gap: 18px;
}

.cart-card {
  border: 1px solid #d9e1ea;
  border-radius: 0;
  background: #fff;
  box-shadow: 0 18px 40px rgba(15, 23, 42, .06);
  padding: 22px;
}

.cart-card-head {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: center;
  margin-bottom: 16px;
}

.cart-card h2 {
  margin: 0;
  font-size: 1.15rem;
}

.cart-selection .cart-item,
.cart-panel .cart-item {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr) 150px auto 34px;
  gap: 14px;
  align-items: center;
  min-height: 74px;
  border: 1px solid #d9e1ea;
  border-radius: 0;
  background: #fbfdfd;
  padding: 14px;
}

.cart-panel .cart-item {
  grid-template-columns: 36px minmax(0, 1fr) auto;
}

.cart-panel .cart-renew-select,
.cart-panel .cart-item-price {
  display: none;
}

.cart-renew-select {
  min-height: 38px;
  border: 1px solid #d9e1ea;
  background: white;
  padding: 0 10px;
  font: inherit;
}

.cart-renew-fixed {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  border: 1px solid #d9e1ea;
  background: #fbfdfd;
  padding: 0 10px;
  color: #52627a;
}

.cart-item-price {
  color: #0B1220;
  white-space: nowrap;
}

.cart-selection .cart-item > svg,
.cart-panel .cart-item > svg,
.cart-interest button > svg:first-child,
.cart-trust svg,
.cart-help-band > svg,
.cart-guarantee > svg {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  background: #e8f8f3;
  color: #10B981;
  padding: 9px;
}

.cart-selection .cart-item b {
  display: block;
  color: #0B1220;
  font-size: 1rem;
}

.cart-selection .cart-item span {
  color: #10B981;
  font-weight: 700;
}

.cart-remove {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid #FCA5A5;
  border-radius: 10px;
  background: #FEF2F2;
  color: #DC2626;
  cursor: pointer;
  font-size: 24px;
  font-weight: 800;
  line-height: 1;
  transition: background 200ms ease, border-color 200ms ease, color 200ms ease, transform 200ms ease;
}

.cart-remove:hover,
.cart-remove:focus-visible {
  border-color: #DC2626;
  background: #DC2626;
  color: #FFFFFF;
  transform: translateY(-1px);
}

.cart-remove svg {
  width: 18px;
  height: 18px;
}

.cart-coupon {
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
  margin-top: 16px;
  border: 1px dashed #cbd5e1;
  border-radius: 0;
  padding: 12px 14px;
}

.cart-coupon input {
  min-height: 38px;
  border: 0;
  outline: 0;
  background: transparent;
  font: inherit;
}

.cart-coupon button {
  border: 0;
  border-radius: 10px;
  background: #0B1220;
  color: white;
  padding: 10px 14px;
}

.cart-trust > div {
  display: grid;
  gap: 8px;
  margin-top: 16px;
  border-top: 0;
}

.cart-trust article {
  display: flex;
  gap: 8px;
  align-items: center;
  border-bottom: 0;
  padding: 2px 0;
}

.cart-trust svg {
  width: 16px;
  height: 16px;
  background: transparent;
  padding: 0;
}

.cart-trust article strong {
  font-size: .82rem;
  white-space: nowrap;
}

.cart-trust article span {
  font-size: .78rem;
  line-height: 1.2;
}

.cart-trust article strong::after {
  content: ":";
}

.cart-trust span,
.cart-help-band span,
.cart-guarantee span,
.cart-summary p,
.cart-renewal,
.cart-proof {
  color: #52627a;
}

.cart-help-band {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  border: 1px solid #c8ecdf;
  border-radius: 0;
  background: #f1fffa;
  padding: 18px;
}

.cart-help-band a {
  border: 1px solid #d9e1ea;
  border-radius: 10px;
  background: white;
  padding: 12px 18px;
  text-decoration: none;
}

.cart-help-band strong,
.cart-help-band span {
  display: block;
}

.cart-side {
  position: sticky;
  top: 104px;
  display: grid;
  gap: 18px;
}

.cart-interest button {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr) auto 30px;
  gap: 9px;
  align-items: center;
  min-height: 58px;
  border-radius: 0;
  padding: 8px 10px;
}

.cart-interest button span {
  color: #0B1220;
  white-space: normal;
}

.cart-interest button small {
  display: block;
  color: #52627a;
  font-weight: 400;
  font-size: .78rem;
  line-height: 1.25;
}

.cart-interest button b {
  color: #10B981;
  font-size: .82rem;
  white-space: nowrap;
}

.cart-interest button strong {
  font-size: .9rem;
  line-height: 1.15;
}

.cart-interest button > svg:last-child {
  width: 30px;
  height: 30px;
  border: 1px solid #d9e1ea;
  border-radius: 10px;
  padding: 7px;
}

.cart-summary {
  display: grid;
  gap: 14px;
}

.cart-summary-line,
.cart-summary-total,
.cart-renewal {
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

.cart-summary-line em {
  color: #10B981;
  font-style: normal;
}

.cart-summary-line small {
  display: block;
  color: #52627a;
  font-size: .75rem;
  font-weight: 400;
}

.cart-summary-total {
  display: grid;
  border-top: 1px solid #d9e1ea;
  padding-top: 14px;
}

.cart-summary-total strong {
  font-size: 1.6rem;
}

.cart-summary .button {
  width: 100%;
  min-height: 48px;
  border: 1px solid #0EA371;
  border-radius: 6px;
  background: #10B981;
  color: white;
  box-shadow: 0 10px 22px rgba(16, 185, 129, 0.18);
}

.cart-summary .button:hover {
  border-color: #087a59;
  background: #0EA371;
}

.cart-payment-accepted {
  display: grid;
  gap: 8px;
  border-top: 1px solid #d9e1ea;
  padding-top: 10px;
}

.cart-payment-accepted > span {
  color: #52627a;
  font-size: .78rem;
  font-weight: 700;
}

.cart-payment-accepted > div {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.cart-payment-accepted svg {
  width: 24px;
  height: 24px;
  color: #0B1220;
}

.cart-guarantee {
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr) 58px;
  gap: 10px;
  align-items: center;
  background: #f1fffa;
}

.cart-guarantee b {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border: 1px dashed #10B981;
  border-radius: 999px;
  color: #10B981;
  font-size: 1.35rem;
}

.cart-guarantee span {
  display: block;
  margin-top: 3px;
}

.cart-guarantee small {
  font-size: .7rem;
  text-transform: uppercase;
}

.cart-account-gate {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.cart-auth-card,
.cart-payment-form {
  display: grid;
  gap: 16px;
}

.cart-icon-panel {
  background: #fff;
  border: 1px solid #d9e1ea;
  padding: 24px;
  box-shadow: 0 12px 34px rgba(15, 23, 42, .04);
}

.cart-icon-panel h2 {
  margin: 0 0 22px;
  color: #0B1220;
  font-size: clamp(1.35rem, 2vw, 2rem);
}

.cart-icon-panel > div {
  display: grid;
  gap: 18px;
}

.cart-icon-panel article {
  min-height: 116px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 12px;
  border: 1px solid #d9e1ea;
  background: #fff;
  text-align: center;
}

.cart-icon-panel svg {
  width: 44px;
  height: 44px;
  color: #0B1220;
}

.cart-icon-panel span {
  color: #52627a;
  font-size: .92rem;
}

.cart-icon-panel strong {
  color: #0B1220;
  font-size: 1rem;
}

.cart-proof {
  margin-top: 18px;
  padding: 10px 0 0;
}

.cart-proof > div {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 0;
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.cart-proof article {
  flex: 1 1 0;
  min-width: 130px;
  min-height: 58px;
  border: 0;
  border-right: 1px solid #d9e1ea;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 3px;
  text-align: center;
}

.cart-proof article:last-child {
  border-right: 0;
}

.cart-proof svg {
  color: #10B981;
  width: 22px;
  height: 22px;
}

.cart-proof strong {
  color: #0B1220;
  font-size: .7rem;
}

.cart-proof span {
  color: #52627a;
  font-size: .64rem;
}

.pay-word {
  min-height: 24px;
  display: grid;
  place-items: center;
  color: #0B1220;
  font-size: 1rem;
  line-height: 1;
  letter-spacing: 0;
}

.pay-word.visa { color: #1956a6; font-style: italic; }
.pay-word.mastercard { color: #e56b00; }
.pay-word.paypal { color: #0759c9; }

@media (max-width: 1020px) {
  .cart-hero,
  .cart-checkout-grid,
  .cart-account-gate {
    grid-template-columns: 1fr;
  }

  .cart-side {
    position: static;
  }

  .cart-trust > div {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cart-proof > div {
    flex-wrap: wrap;
  }

  .cart-proof article {
    border-right: 0;
  }
}

@media (max-width: 680px) {
  .cart-hero {
    min-height: 220px;
    padding: 34px 18px;
    background-position: center 50%;
  }

  .cart-stepper {
    grid-template-columns: 1fr;
  }

  .cart-stepper button:not(:last-child)::after {
    display: none;
  }

  .cart-card,
  .cart-checkout-page {
    padding-inline: 14px;
  }

  .cart-trust > div,
  .cart-form-grid,
  .cart-proof > div {
    flex-wrap: wrap;
  }

  .cart-help-band,
  .cart-guarantee {
    grid-template-columns: 1fr;
  }

  .cart-interest button {
    grid-template-columns: 40px minmax(0, 1fr) 30px;
  }

  .cart-interest button b {
    grid-column: 2;
  }

  .cart-selection .cart-item {
    grid-template-columns: 40px minmax(0, 1fr) 34px;
  }

  .cart-renew-select,
  .cart-item-price {
    grid-column: 2;
  }
}

@media (max-width: 1020px) {
  .customer-sidebar,
  .cart-side {
    position: static;
    top: auto;
  }
}

@media (max-width: 1440px) {
  .customer-area-layout {
    grid-template-columns: 230px minmax(0, 1fr);
    gap: 18px;
  }

  .customer-dashboard {
    padding-inline: 18px;
  }

  .customer-profile-layout,
  .customer-mail-page,
  .customer-backups-page,
  .customer-kora-page,
  .customer-kb-page,
  .customer-ticket-detail-page {
    grid-template-columns: minmax(0, 1fr);
  }

  .customer-profile-side,
  .customer-mail-side,
  .customer-backups-side,
  .customer-kora-side,
  .customer-kb-side,
  .customer-ticket-detail-side {
    grid-column: auto;
    grid-row: auto;
  }

  .customer-profile-form {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .customer-mail-table,
  .customer-backups-table,
  .customer-domain-list,
  .customer-dns-records,
  .customer-ticket-list,
  .customer-service-list {
    overflow-x: auto;
  }

  .customer-mail-table header,
  .customer-mail-table article,
  .customer-backups-table header,
  .customer-backups-table article,
  .customer-domain-list > header,
  .customer-domain-list article,
  .customer-ticket-list > header,
  .customer-ticket-list article {
    min-width: 760px;
  }

  .kora-help-grid > div {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 920px) {
  .hero,
  .panel-preview-section,
  .domain-band,
  .kora-start-section,
  .construction-template,
  .cms-hero,
  .cms-admin-section,
  .cms-compare-cta {
    grid-template-columns: 1fr;
  }

  .cms-admin-preview {
    margin-top: 0;
  }

  .service-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cms-benefit-strip,
  .cms-template-grid,
  .cms-card-grid,
  .cms-install-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cms-install-row article,
  .cms-install-row article:first-child,
  .cms-install-row article:last-child {
    border-radius: 0;
  }

  .cms-install-row article {
    border-right: 0;
    border-bottom: 0;
  }

  .cms-install-row article:nth-child(2n),
  .cms-install-row article:last-child {
    border-right: 0;
  }

  .cms-install-row article:last-child {
    border-bottom: 0;
  }

  .customer-service-management-hero-grid,
  .customer-service-management-grid,
  .customer-service-status-grid,
  .customer-backup-security-summary-grid,
  .customer-backup-security-security-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .customer-service-management-hero {
    padding: 16px;
  }

  .customer-service-management-title {
    grid-template-columns: 58px minmax(0, 1fr);
  }

  .customer-service-icon-wrap {
    width: 58px;
    height: 58px;
  }

  .customer-service-icon-wrap svg {
    width: 24px;
    height: 24px;
  }
}

@media (max-width: 920px) {
  .site-header {
    grid-template-columns: minmax(0, 1fr) auto;
    padding-block: 12px;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav-toggle svg {
    width: 18px;
    height: 18px;
  }

  .site-nav {
    grid-column: 1 / -1;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding-top: 12px;
    border-top: 1px solid rgba(39, 217, 242, 0.14);
    overflow: visible;
  }

  .site-header.is-menu-open .site-nav {
    display: flex;
  }

  .site-nav > a,
  .nav-dropdown > a {
    justify-content: space-between;
    min-height: 48px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .nav-dropdown {
    width: 100%;
  }

  .nav-panel,
  .cart-panel,
  .login-panel {
    position: fixed;
    left: 14px;
    right: 14px;
    top: 158px;
    width: auto;
    min-width: 0;
  }

  .nav-panel {
    position: static;
    width: 100%;
    min-width: 0;
    grid-template-columns: 1fr;
    margin: 8px 0 14px;
    padding: 12px;
    display: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .nav-dropdown.is-open .nav-panel {
    display: grid;
  }

  .nav-dropdown:hover .nav-panel,
  .nav-dropdown:focus-within .nav-panel {
    transform: none;
  }

  .nav-panel::before,
  .nav-panel-help {
    display: none;
  }

  .nav-dropdown:hover > a::after,
  .nav-dropdown:focus-within > a::after {
    content: none;
  }

  .nav-dropdown.is-open > a {
    color: #7cf3ef;
  }

  .brand-link img {
    max-width: 100%;
  }

  .header-actions {
    grid-column: 1 / -1;
    display: none;
    justify-content: space-between;
    padding-top: 12px;
  }

  .site-header.is-menu-open .header-actions {
    display: flex;
  }

  .kora-hero {
    grid-template-columns: 1fr;
  }

  .kora-start-visual {
    min-height: 430px;
  }

  .kora-chat-card {
    min-height: 390px;
  }

  .kora-hero-panel {
    padding: 0 22px 22px;
  }

  .domain-box,
  .domain-results,
  .feature-grid,
  .service-grid,
  .plan-grid,
  .email-card-grid,
  .apps-grid,
  .demo-grid,
  .split,
  .kora-agent-page,
  .kora-agent-flow,
  .customer-stats,
  .customer-grid,
  .customer-module-grid,
  .customer-table article,
  .customer-ticket-form,
  .cart-checkout-grid,
  .cart-form-grid,
  .domain-page-search,
  .domain-service-grid,
  .domain-flow-section,
  .customer-area-layout,
  .customer-service-console,
  .customer-dashboard-overview,
  .customer-overview-column,
  .customer-backup-strip,
  .customer-service-tools,
  .customer-service-item,
  .customer-ticket-tools,
  .customer-ticket-list > header,
  .customer-ticket-list article,
  .customer-ticket-create-form,
  .customer-ticket-detail-page,
  .customer-ticket-summary-card,
  .customer-ticket-conversation article,
  .customer-mail-page,
  .customer-mail-head,
  .customer-mail-tools,
  .customer-mail-table header,
  .customer-mail-table article,
  .customer-mail-imap dl,
  .customer-backups-page,
  .customer-backups-head,
  .customer-backups-tools,
  .customer-backups-table header,
  .customer-backups-table article,
  .customer-backups-note,
  .customer-kora-page,
  .customer-kora-head,
  .kora-hero-card,
  .kora-help-grid > div,
  .kora-chat-box,
  .customer-create-ticket-page .customer-help-strip,
  .customer-dns-servers,
  .customer-kb-page,
  .customer-kb-tools,
  .customer-kb-categories > div,
  .customer-notifications-page,
  .customer-profile-card,
  .customer-profile-layout,
  .customer-profile-form,
  .cart-account-gate,
  .customer-list div {
    grid-template-columns: 1fr;
  }

  .customer-service-management-grid,
  .customer-service-management-hero-grid,
  .customer-service-status-grid,
  .customer-backup-security-summary-grid,
  .customer-backup-security-security-grid {
    grid-template-columns: 1fr;
  }

  .customer-backup-security-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .customer-backup-security-head .status-pill-success {
    align-self: flex-start;
  }

  .customer-backup-security-status-box {
    grid-template-columns: 42px 1fr;
  }

  .customer-backup-security-status-box .button {
    grid-column: 2;
    justify-self: start;
  }

  .customer-service-management-title-wrap {
    width: 100%;
    align-items: flex-start;
    flex-direction: column;
  }

  .customer-service-management-hero-grid p {
    min-height: 0;
  }

  .customer-service-management-tabs {
    overflow-x: auto;
    scrollbar-width: none;
    padding-bottom: 0;
  }

  .customer-service-management-tabs a {
    min-height: 38px;
  }

  .customer-service-detail-list strong {
    text-align: left;
  }

  .customer-service-primary-btn {
    width: 100%;
    justify-content: center;
  }

  .customer-dns-records {
    overflow-x: auto;
  }

  .customer-kb-page > header,
  .customer-kb-tools,
  .customer-kb-categories,
  .customer-kb-articles,
  .customer-kb-side {
    grid-column: auto;
    grid-row: auto;
  }

  .customer-notification-actions,
  .customer-notification-list,
  .customer-notification-side {
    grid-column: auto;
    grid-row: auto;
  }

  .customer-notification-actions {
    justify-self: stretch;
    flex-wrap: wrap;
  }

  .customer-notification-list > a {
    grid-template-columns: 8px 44px minmax(0, 1fr);
  }

  .customer-notification-list em,
  .customer-notification-list time,
  .customer-notification-list > a > svg:last-child {
    grid-column: 3;
  }

  .customer-ticket-detail-head,
  .customer-ticket-detail-head div:last-child,
  .customer-ticket-detail-tabs {
    flex-wrap: wrap;
  }

  .customer-ticket-detail-head,
  .customer-ticket-summary-card,
  .customer-ticket-detail-tabs,
  .customer-ticket-detail-side {
    grid-column: auto;
  }

  .customer-support-template-wide,
  .customer-support-template-wide .support-template-head,
  .customer-support-template-wide .support-template-benefits,
  .customer-support-template-wide .support-template-cta,
  .customer-support-template-wide .support-template-link {
    grid-template-columns: 1fr;
  }

  .customer-support-template-wide {
    padding: 22px;
  }

  .customer-support-template-wide .support-template-head > svg,
  .customer-support-template-wide .support-template-cta svg:first-child,
  .customer-support-template-wide .support-template-cta svg:last-child {
    justify-self: start;
  }

  .customer-support-template-wide .support-template-benefits span {
    border-right: 0;
  }

  .customer-mail-head,
  .customer-mail-head > div:last-child,
  .customer-mail-panel nav,
  .customer-mail-table footer,
  .customer-mail-table article > div:last-child {
    flex-wrap: wrap;
  }

  .customer-mail-head,
  .customer-mail-imap {
    grid-column: auto;
  }

  .customer-backups-head,
  .customer-backups-note {
    grid-column: auto;
  }

  .customer-kora-head {
    grid-column: auto;
  }

  .customer-service-price {
    justify-items: start;
  }

  .customer-services-list,
  .customer-help-strip {
    grid-column: auto;
    grid-row: auto;
  }

  .customer-help-strip {
    grid-template-columns: 1fr;
    justify-items: start;
  }

  .customer-sidebar {
    position: static;
    grid-template-columns: 1fr;
  }

  .customer-side-card a,
  .customer-side-card button {
    min-height: 40px;
  }

  .customer-profile-form {
    grid-template-columns: 1fr;
    padding: 16px;
  }

  .customer-profile-card {
    padding: 16px;
  }

  .customer-profile-photo-panel {
    grid-template-columns: 1fr;
  }

  .customer-profile-photo-actions,
  .customer-mail-side section:last-child div {
    grid-template-columns: 1fr;
  }

  .customer-profile-tabs,
  .customer-mail-panel nav,
  .customer-backups-panel nav,
  .customer-ticket-detail-tabs,
  .customer-domain-subnav {
    overflow-x: auto;
    flex-wrap: nowrap;
  }

  .customer-profile-tabs button,
  .customer-mail-panel nav a,
  .customer-backups-panel nav a,
  .customer-ticket-detail-tabs a,
  .customer-domain-subnav a {
    white-space: nowrap;
  }

  .customer-action-tiles {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .customer-hosting-data div {
    grid-template-columns: 1fr;
    gap: 3px;
  }

  .customer-hosting-data dt {
    text-align: left;
  }

  .home-plans .plan-grid {
    grid-template-columns: 1fr;
  }

  .home-plans .plan-card {
    width: 100%;
    min-width: 0;
  }

  .footer-main {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .customer-list em {
    justify-self: start;
  }

  .migration-section {
    align-items: start;
    flex-direction: column;
  }

  .feature-section .section-title {
    align-items: start;
    flex-direction: column;
  }

  .operations-score {
    width: 100%;
  }

  .feature-section .apps-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hosting-hero,
  .hosting-select-grid,
  .hosting-plan-grid {
    grid-template-columns: 1fr;
  }

  .hosting-steps {
    grid-template-columns: 1fr;
  }

  .hosting-steps span::after {
    content: none;
  }
}

@media (max-width: 640px) {
  .customer-dashboard {
    padding-inline: 10px;
  }

  .customer-breadcrumb {
    flex-wrap: wrap;
  }

  .customer-main {
    gap: 12px;
  }

  .customer-profile-form input,
  .customer-profile-form select {
    min-height: 40px;
  }

  .customer-mail-head,
  .customer-backups-head,
  .customer-backup-security-head,
  .customer-ticket-detail-head,
  .customer-kora-head {
    gap: 10px;
  }

  .customer-backup-security-status-box {
    grid-template-columns: 42px 1fr;
  }

  .customer-backup-security-status-box .button {
    width: 100%;
  }

  .customer-support-template-wide {
    padding: 16px;
  }

  .customer-support-template-wide .support-template-head > svg {
    width: 96px;
    height: 96px;
    padding: 26px;
  }

  .customer-support-template-wide .support-template-cta {
    min-height: 56px;
    padding: 0 18px;
  }

  .site-header {
    position: static;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: 0;
    padding-top: 38px;
  }

  .hero h1 {
    font-size: clamp(2.65rem, 13vw, 4.2rem);
  }

  .service-strip {
    grid-template-columns: 1fr;
    margin-inline: 14px;
  }

  .hosting-hero,
  .hosting-flow {
    padding-inline: 14px;
  }

  .hosting-config-head,
  .hosting-select-grid,
  .hosting-config-actions {
    padding-inline: 18px;
  }

  .hosting-config-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .email-confidence-section {
    padding-inline: 14px;
  }

  .feature-section::before {
    inset: 10px;
  }

  .feature-grid article {
    min-height: 0;
    padding: 20px;
  }

  .operations-apps-head {
    align-items: start;
    flex-direction: column;
  }

  .feature-section .apps-grid {
    grid-template-columns: 1fr;
  }

  .apps-section {
    padding-inline: 18px;
  }

  .app-item {
    grid-template-columns: 64px minmax(0, 1fr);
  }

  .app-item > span {
    width: 64px;
    height: 64px;
  }

  .app-icon img {
    width: 42px;
    height: 42px;
  }

  .email-feature-card {
    min-height: 0;
  }

  .mail-sidebar {
    display: none;
  }

  .mail-window,
  .campaign-card {
    width: 100%;
  }

  .mail-window span,
  .campaign-editor {
    right: 14px;
  }

  .campaign-editor strong {
    min-width: 0;
    font-size: 1rem;
  }

  .kora-start-section {
    padding-inline: 18px;
  }

  .kora-start-copy h2 {
    font-size: clamp(2.5rem, 12vw, 3.7rem);
  }

  .kora-chat-panel {
    width: 220px;
    margin-left: 18px;
    padding: 30px 18px;
  }

  .kora-chat-card img {
    width: 58%;
    right: -16px;
  }

  .kora-agent-page {
    min-height: 0;
  }

  .kora-console-head {
    grid-template-columns: 96px 1fr;
  }

  .kora-console-head img {
    width: 96px;
    height: auto;
  }

  .kora-console-head > span {
    grid-column: 2;
    justify-self: start;
  }

  .kora-console-chat p {
    max-width: 100%;
  }

  .kora-prompt-list {
    left: 12px;
    width: calc(100% - 24px);
  }

  .kora-prompt-list a,
  .kora-prompt-list a:nth-child(2),
  .kora-prompt-list a:nth-child(3) {
    width: 100%;
    margin-left: 0;
  }

  .panel-preview-section,
  .page-section {
    padding-inline: 14px;
  }

  .construction-template {
    min-height: 0;
  }

  .cms-hero,
  .cms-section,
  .cms-compare-cta {
    padding-inline: 14px;
  }

  .cms-compare-cta > * {
    min-width: 0;
  }

  .cms-compare-table {
    display: block;
    max-width: 100%;
    overflow-x: auto;
  }

  .cms-compare-table th,
  .cms-compare-table td {
    padding: 13px 14px;
    white-space: nowrap;
  }

  .cms-benefit-strip,
  .cms-template-grid,
  .cms-card-grid,
  .cms-install-row,
  .cms-final-card {
    grid-template-columns: 1fr;
  }

  .cms-install-row article,
  .cms-install-row article:nth-child(2n) {
    border-right: 0;
  }

  .cms-install-row article:not(:last-child) {
    border-bottom: 0;
  }

  .cms-hero {
    min-height: 0;
  }

  .cms-admin-preview {
    max-height: 430px;
  }

  .footer-main,
  .footer-bottom {
    padding-inline: 18px;
  }

  .footer-main,
  .footer-bottom {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    align-items: start;
    flex-direction: column;
  }
}

.customer-main .customer-mini-list a,
.customer-main .customer-mini-list button,
.customer-main .customer-ticket-list article,
.customer-main .customer-domain-list article,
.customer-main .customer-kb-articles a,
.customer-main .customer-dns-records th,
.customer-main .customer-dns-records td,
.customer-main .customer-table article,
.customer-main .customer-service-item,
.customer-main .customer-ticket-conversation article,
.customer-main .customer-notification-list > a {
  padding-top: 8px;
  padding-bottom: 8px;
}

.customer-main .customer-ticket-list > header,
.customer-main .customer-domain-list > header,
.customer-main .customer-notification-list nav a {
  min-height: 36px;
  padding-top: 8px;
  padding-bottom: 8px;
}

.customer-main .customer-ticket-list footer,
.customer-main .customer-domain-list footer,
.customer-main .customer-service-list footer {
  padding-top: 8px;
  padding-bottom: 8px;
}

.customer-main .customer-services-list .customer-feature-service,
.customer-main .customer-services-list .customer-service-row {
  min-height: 60px;
  padding-top: 7px;
  padding-bottom: 7px;
}

.customer-main .customer-service-list .customer-service-item {
  min-height: 86px;
}

.customer-main .customer-kb-articles h3 {
  padding-top: 10px;
}

body.is-modal-open {
  overflow: hidden;
}

.customer-modal[hidden] {
  display: none;
}

.customer-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 20px;
}

.customer-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, .48);
}

.customer-modal-card {
  position: relative;
  z-index: 1;
  width: min(520px, 100%);
  border: 1px solid #d9e1ea;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 24px 70px rgba(15, 23, 42, .22);
  padding: 26px 28px 24px;
}

.customer-modal-card h2 {
  margin: 0 42px 12px 0;
  color: var(--ink);
  font-size: 1.35rem;
  line-height: 1.2;
}

.customer-modal-card p,
.customer-modal-body {
  margin: 0;
  color: #52627a;
  line-height: 1.65;
}

.customer-modal-form {
  display: grid;
  gap: 16px;
  margin-top: 14px;
}

.customer-modal-form > div {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.customer-modal-form label {
  display: grid;
  gap: 6px;
  color: #334155;
  font-size: .9rem;
}

.customer-modal-form label.is-wide,
.customer-modal-check {
  grid-column: 1 / -1;
}

.customer-modal-form input,
.customer-modal-form select,
.customer-modal-form textarea {
  width: 100%;
  min-height: 40px;
  border: 1px solid #d9e1ea;
  border-radius: 6px;
  background: #fbfdfd;
  color: var(--ink);
  padding: 0 11px;
  font: inherit;
}

.customer-modal-form textarea {
  min-height: 92px;
  padding: 10px 11px;
  resize: vertical;
}

.customer-modal-check {
  display: flex !important;
  grid-template-columns: none;
  align-items: center;
}

.customer-modal-check input {
  width: auto;
  min-height: 0;
}

.customer-modal-form footer {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}

.customer-modal-form button {
  min-height: 40px;
  border: 1px solid #d9e1ea;
  border-radius: 6px;
  background: white;
  color: var(--ink);
  padding: 0 16px;
  font: inherit;
  cursor: pointer;
}

.customer-modal-form button[type="submit"] {
  border-color: transparent;
  background: #10b981;
  color: white;
  font-weight: 700;
}

.customer-modal-success {
  border: 1px solid #b8ead9;
  border-radius: 6px;
  background: #ecfdf5;
  color: #047857;
  padding: 12px;
  font-weight: 700;
}

@media (max-width: 620px) {
  .customer-modal-card {
    padding: 22px 18px 18px;
  }

  .customer-modal-form > div {
    grid-template-columns: 1fr;
  }

  .customer-modal-form footer {
    flex-direction: column;
  }
}

.customer-modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  display: inline-grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 1px solid #d9e1ea;
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  cursor: pointer;
}

.customer-main .customer-support-template {
  display: grid;
  gap: 12px;
  padding: 16px;
}

.customer-main .customer-support-template .support-template-head {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
}

.customer-main .customer-support-template .support-template-cta,
.customer-main .customer-support-template .support-template-link {
  display: grid;
  align-items: center;
  min-height: 44px;
  border-radius: 6px;
  text-decoration: none;
}

.customer-main .customer-support-template .support-template-cta {
  grid-template-columns: 18px minmax(0, 1fr) 18px;
  gap: 8px;
  border: 0;
  background: #10b981;
  color: #fff;
  padding: 0 12px;
  font-size: .88rem;
  font-weight: 800;
}

.customer-main .customer-support-template .support-template-link {
  grid-template-columns: 20px minmax(0, 1fr) 16px;
  gap: 10px;
  border: 1px solid #dfe3e8;
  background: #fff;
  color: #52627a;
  padding: 10px 12px;
  font-size: .82rem;
  font-weight: 500;
}

.customer-main .customer-support-template .support-template-link span,
.customer-main .customer-support-template .support-template-link strong {
  grid-column: 2;
  margin: 0;
  line-height: 1.25;
}

.customer-main .customer-support-template .support-template-link span {
  color: #52627a;
}

.customer-main .customer-support-template .support-template-link strong {
  color: #10b981;
  font-size: .86rem;
  font-weight: 800;
}

.customer-main .customer-support-template .support-template-link svg:first-child,
.customer-main .customer-support-template .support-template-link svg:last-child {
  grid-row: 1 / span 2;
}

@media (max-width: 1440px) {
  .customer-invoice-tools,
  .customer-invoice-stats {
    grid-template-columns: 1fr;
  }

  .customer-invoice-list {
    overflow-x: auto;
  }

  .customer-invoice-list header,
  .customer-invoice-list article {
    min-width: 760px;
  }
}

html,
body,
main,
header,
footer,
.site-header,
.site-footer,
.footer-main,
.footer-bottom,
.customer-main,
.cart-main-flow,
.cart-card,
.cart-selection .cart-item,
.cart-panel .cart-item,
.cart-coupon,
.cart-help-band,
.cart-interest button,
.cart-icon-panel,
.cart-icon-panel article {
  border-radius: 0 !important;
}

.country-select-trigger,
.country-select-menu,
.country-option,
.form-grid input:not([type="hidden"]),
.form-grid textarea,
.form-grid select,
.cart-email-auth input:not([type="hidden"]),
.cart-payment-form input:not([type="hidden"]):not([type="radio"]):not([type="checkbox"]),
.cart-payment-form textarea,
.customer-profile-form input:not([type="hidden"]),
.customer-profile-form textarea,
.customer-ticket-create-form input:not([type="hidden"]),
.customer-ticket-create-form textarea,
.customer-ticket-create-form select,
.customer-ticket-form input:not([type="hidden"]),
.customer-ticket-form textarea,
.customer-ticket-form select,
.customer-modal-form input:not([type="hidden"]),
.customer-modal-form textarea,
.customer-modal-form select {
  width: 100%;
  min-height: 54px;
  border: 1px solid #e5e7eb;
  border-radius: 12px !important;
  background: #fff;
  padding: 0 16px;
  color: #071126;
  font: inherit;
  box-shadow: none;
  transition: border-color 200ms ease, background-color 200ms ease;
}

.form-grid textarea,
.cart-payment-form textarea,
.customer-profile-form textarea,
.customer-ticket-create-form textarea,
.customer-ticket-form textarea,
.customer-modal-form textarea {
  padding-top: 14px;
  resize: vertical;
}

.country-select-trigger:hover,
.country-select.is-open .country-select-trigger,
.country-select-trigger:focus-visible,
.form-grid input:not([type="hidden"]):hover,
.form-grid textarea:hover,
.form-grid select:hover,
.cart-email-auth input:not([type="hidden"]):hover,
.cart-payment-form input:not([type="hidden"]):not([type="radio"]):not([type="checkbox"]):hover,
.cart-payment-form textarea:hover,
.customer-profile-form input:not([type="hidden"]):hover,
.customer-profile-form textarea:hover,
.customer-ticket-create-form input:not([type="hidden"]):hover,
.customer-ticket-create-form textarea:hover,
.customer-ticket-create-form select:hover,
.customer-ticket-form input:not([type="hidden"]):hover,
.customer-ticket-form textarea:hover,
.customer-ticket-form select:hover,
.customer-modal-form input:not([type="hidden"]):hover,
.customer-modal-form textarea:hover,
.customer-modal-form select:hover,
.form-grid input:not([type="hidden"]):focus,
.form-grid textarea:focus,
.form-grid select:focus,
.cart-email-auth input:not([type="hidden"]):focus,
.cart-payment-form input:not([type="hidden"]):not([type="radio"]):not([type="checkbox"]):focus,
.cart-payment-form textarea:focus,
.customer-profile-form input:not([type="hidden"]):focus,
.customer-profile-form textarea:focus,
.customer-ticket-create-form input:not([type="hidden"]):focus,
.customer-ticket-create-form textarea:focus,
.customer-ticket-create-form select:focus,
.customer-ticket-form input:not([type="hidden"]):focus,
.customer-ticket-form textarea:focus,
.customer-ticket-form select:focus,
.customer-modal-form input:not([type="hidden"]):focus,
.customer-modal-form textarea:focus,
.customer-modal-form select:focus {
  border-color: #10b981;
  outline: 0;
  box-shadow: none;
}

.country-select-menu {
  padding: 6px;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.16);
}

.address-autocomplete-results {
  position: relative;
  z-index: 40;
  display: grid;
  gap: 4px;
  margin-top: 6px;
  border: 1px solid #dfe3e8;
  border-radius: 3px !important;
  background: #fff;
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.12);
  overflow: hidden;
}

.address-autocomplete-results:empty {
  display: none;
}

.address-autocomplete-results button,
.address-autocomplete-status {
  width: 100%;
  border: 0;
  background: #fff;
  color: #071126;
  padding: 10px 12px;
  font: inherit;
  text-align: left;
}

.address-autocomplete-results button {
  display: grid;
  gap: 3px;
  cursor: pointer;
}

.address-autocomplete-results button:hover,
.address-autocomplete-results button:focus-visible {
  background: #eefdf9;
  outline: 0;
}

.address-autocomplete-results span,
.address-autocomplete-status {
  color: #64748b;
  font-size: 0.86rem;
}

.country-option {
  min-height: 46px;
  border: 0;
  padding: 0 10px;
}

.country-select-trigger,
.country-select-trigger:hover,
.country-select.is-open .country-select-trigger,
.country-select-trigger:focus-visible {
  color: #071126 !important;
}

.country-option:not(.is-selected) {
  color: #071126;
}

.form-grid input:not([type="hidden"]),
.form-grid textarea,
.form-grid select,
.cart-email-auth input:not([type="hidden"]),
.cart-payment-form input:not([type="hidden"]):not([type="radio"]):not([type="checkbox"]),
.cart-payment-form textarea,
.customer-profile-form input:not([type="hidden"]),
.customer-profile-form textarea,
.customer-ticket-create-form input:not([type="hidden"]),
.customer-ticket-create-form textarea,
.customer-ticket-create-form select,
.customer-ticket-form input:not([type="hidden"]),
.customer-ticket-form textarea,
.customer-ticket-form select,
.customer-modal-form input:not([type="hidden"]),
.customer-modal-form textarea,
.customer-modal-form select,
.form-grid input:not([type="hidden"]):hover,
.form-grid textarea:hover,
.form-grid select:hover,
.cart-email-auth input:not([type="hidden"]):hover,
.cart-payment-form input:not([type="hidden"]):not([type="radio"]):not([type="checkbox"]):hover,
.cart-payment-form textarea:hover,
.customer-profile-form input:not([type="hidden"]):hover,
.customer-profile-form textarea:hover,
.customer-ticket-create-form input:not([type="hidden"]):hover,
.customer-ticket-create-form textarea:hover,
.customer-ticket-create-form select:hover,
.customer-ticket-form input:not([type="hidden"]):hover,
.customer-ticket-form textarea:hover,
.customer-ticket-form select:hover,
.customer-modal-form input:not([type="hidden"]):hover,
.customer-modal-form textarea:hover,
.customer-modal-form select:hover,
.form-grid input:not([type="hidden"]):focus,
.form-grid textarea:focus,
.form-grid select:focus,
.cart-email-auth input:not([type="hidden"]):focus,
.cart-payment-form input:not([type="hidden"]):not([type="radio"]):not([type="checkbox"]):focus,
.cart-payment-form textarea:focus,
.customer-profile-form input:not([type="hidden"]):focus,
.customer-profile-form textarea:focus,
.customer-ticket-create-form input:not([type="hidden"]):focus,
.customer-ticket-create-form textarea:focus,
.customer-ticket-create-form select:focus,
.customer-ticket-form input:not([type="hidden"]):focus,
.customer-ticket-form textarea:focus,
.customer-ticket-form select:focus,
.customer-modal-form input:not([type="hidden"]):focus,
.customer-modal-form textarea:focus,
.customer-modal-form select:focus {
  color: #071126 !important;
  caret-color: #071126;
}

.form-grid input:not([type="hidden"]),
.form-grid select,
.cart-email-auth input:not([type="hidden"]),
.cart-payment-form input:not([type="hidden"]):not([type="radio"]):not([type="checkbox"]),
.customer-profile-form input:not([type="hidden"]),
.customer-ticket-create-form input:not([type="hidden"]),
.customer-ticket-create-form select,
.customer-ticket-form input:not([type="hidden"]),
.customer-ticket-form select,
.customer-modal-form input:not([type="hidden"]),
.customer-modal-form select {
  height: 44px;
  min-height: 44px;
  border-radius: 3px !important;
  padding: 0 12px;
}

.country-select-trigger {
  height: 54px;
  min-height: 54px;
  border-radius: 3px !important;
}

.form-grid textarea,
.cart-payment-form textarea,
.customer-profile-form textarea,
.customer-ticket-create-form textarea,
.customer-ticket-form textarea,
.customer-modal-form textarea {
  min-height: 112px;
  height: auto;
  border-radius: 3px !important;
}

input:not([type="hidden"]):not([type="radio"]):not([type="checkbox"]):not([type="submit"]):not([type="button"]):not([type="reset"]),
textarea,
input:not([type="hidden"]):not([type="radio"]):not([type="checkbox"]):not([type="submit"]):not([type="button"]):not([type="reset"]):hover,
textarea:hover,
input:not([type="hidden"]):not([type="radio"]):not([type="checkbox"]):not([type="submit"]):not([type="button"]):not([type="reset"]):focus,
textarea:focus,
input:not([type="hidden"]):not([type="radio"]):not([type="checkbox"]):not([type="submit"]):not([type="button"]):not([type="reset"]):active,
textarea:active {
  color: #071126 !important;
  -webkit-text-fill-color: #071126 !important;
  caret-color: #071126 !important;
}

input[type="checkbox"] {
  position: relative;
  display: inline-block !important;
  width: 44px !important;
  height: 24px !important;
  min-height: 24px !important;
  flex: 0 0 44px;
  appearance: none;
  -webkit-appearance: none;
  border: 1px solid rgba(7, 17, 38, 0.08) !important;
  border-radius: 999px !important;
  background: #aeb4ba !important;
  background-clip: padding-box;
  clip-path: inset(0 round 999px);
  overflow: hidden;
  padding: 0 !important;
  cursor: pointer;
  transition: background .18s ease;
  vertical-align: middle;
}

input[type="checkbox"]::after {
  position: absolute;
  top: 2px;
  left: 2px;
  width: 18px;
  height: 18px;
  display: block;
  border-radius: 999px !important;
  background: #fff;
  box-shadow: 0 2px 6px rgba(7, 17, 38, 0.2);
  content: "";
  transition: transform .18s ease;
}

input[type="checkbox"]:checked {
  background: var(--teal) !important;
}

input[type="checkbox"]:checked::after {
  transform: translateX(20px);
}

input[type="checkbox"]:disabled {
  opacity: .55;
  cursor: not-allowed;
}

.domain-toggle input[type="checkbox"] {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  min-height: 1px !important;
  opacity: 0 !important;
  pointer-events: none;
}

.domain-toggle i {
  width: 42px !important;
  height: 22px !important;
  border-radius: 999px !important;
}

.domain-toggle i::before {
  border-radius: 50% !important;
}

.cart-payment-methods label {
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  min-height: 44px;
  margin: 0;
  color: #44546a;
}

.cart-payment-methods input[type="radio"] {
  position: static !important;
  width: 20px !important;
  height: 20px !important;
  min-height: 20px !important;
  margin: 0 !important;
  appearance: auto !important;
  -webkit-appearance: auto !important;
  border-radius: 50% !important;
  background: initial !important;
  flex: 0 0 20px;
}

.cart-payment-methods input[type="radio"]::after {
  content: none !important;
}

.cart-payment-methods small {
  display: block;
  grid-column: 2;
  margin-top: 4px;
  color: #b96500;
}

.customer-switch {
  display: inline-block !important;
  width: 42px !important;
  height: 22px !important;
  min-height: 22px !important;
  border: 0 !important;
  border-radius: 999px !important;
  background: #24b86a !important;
  position: relative !important;
  padding: 0 !important;
  overflow: visible !important;
}

.customer-switch::after {
  content: "" !important;
  position: absolute !important;
  top: 4px !important;
  right: 4px !important;
  width: 14px !important;
  height: 14px !important;
  border-radius: 50% !important;
  background: #fff !important;
}

.customer-profile-section-form input[type="file"] {
  height: auto !important;
  min-height: 44px !important;
  padding: 10px 12px !important;
}

.cart-stepper-complete button {
  color: #42526a;
}

.cart-stepper-complete button b {
  background: #dff7ef;
  color: var(--teal);
}

.cart-confirmation-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 18px;
  align-items: start;
}

.cart-success-confirmation {
  display: grid;
  gap: 0;
  padding: 0;
}

.cart-success-hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px;
  border-bottom: 1px solid var(--line);
}

.cart-success-hero > div {
  display: flex;
  align-items: center;
  gap: 18px;
}

.cart-success-hero svg {
  width: 54px;
  height: 54px;
  color: var(--teal);
}

.cart-success-hero > span {
  display: grid;
  place-items: center;
  width: 160px;
  height: 96px;
  background: #e9f7f5;
  color: var(--teal);
}

.cart-success-hero > span svg {
  width: 42px;
  height: 42px;
}

.cart-success-hero h2,
.cart-order-details h3,
.cart-confirmation-side h3 {
  margin: 0;
  color: #071126;
}

.cart-success-hero p {
  max-width: 560px;
  margin: 6px 0 0;
  color: #42526a;
}

.cart-order-details {
  display: grid;
  gap: 18px;
  padding: 24px 28px 28px;
}

.cart-order-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.cart-order-meta article {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 10px;
  align-items: center;
}

.cart-order-meta svg,
.cart-next-list svg,
.cart-management-list svg,
.cart-payment-confirmed svg {
  width: 34px;
  height: 34px;
  border-radius: 4px;
  padding: 8px;
  background: #e4f8f4;
  color: var(--teal);
}

.cart-order-meta span,
.cart-order-meta strong {
  display: block;
}

.cart-order-meta span {
  color: #64748b;
  font-size: .78rem;
}

.cart-order-table {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 5px;
}

.cart-order-row {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) 140px 140px 140px;
  align-items: center;
  min-height: 54px;
  border-bottom: 1px solid var(--line);
}

.cart-order-row > span {
  padding: 12px 14px;
  color: #42526a;
}

.cart-order-head {
  min-height: 42px;
  background: #f8fafc;
  font-weight: 700;
  font-size: .82rem;
}

.cart-order-row:not(.cart-order-head) > span:first-child {
  display: grid;
  grid-template-columns: 30px 1fr;
  gap: 8px;
}

.cart-order-row:not(.cart-order-head) svg {
  width: 28px;
  height: 28px;
  padding: 6px;
  border-radius: 4px;
  background: #e4f8f4;
  color: var(--teal);
}

.cart-order-row strong,
.cart-order-row small {
  display: block;
}

.cart-order-row strong {
  color: #071126;
}

.cart-order-row small {
  color: #64748b;
  font-size: .78rem;
}

.cart-order-totals {
  display: grid;
  grid-template-columns: 1fr 140px;
  gap: 8px 14px;
  justify-content: end;
  max-width: 340px;
  margin-left: auto;
  padding: 14px;
  color: #42526a;
}

.cart-order-totals strong:last-child {
  color: var(--teal);
}

.cart-info-note {
  display: flex;
  gap: 12px;
  align-items: center;
  border: 1px solid #c7def6;
  border-radius: 5px;
  background: #f0f7ff;
  padding: 14px;
}

.cart-info-note svg {
  color: #2f80ed;
}

.cart-info-note strong,
.cart-info-note span {
  display: block;
}

.cart-info-note span {
  color: #42526a;
  font-size: .9rem;
}

.cart-success-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.cart-confirmation-side {
  display: grid;
  gap: 14px;
}

.cart-next-list,
.cart-management-list {
  display: grid;
  gap: 10px;
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
}

.cart-next-list li,
.cart-management-list a,
.cart-management-list button {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  border: 0;
  border-bottom: 1px solid var(--line);
  background: transparent;
  padding: 10px 0;
  color: #071126;
  font: inherit;
  text-align: left;
  text-decoration: none;
  cursor: pointer;
}

.cart-management-list span {
  margin-left: auto;
  color: #64748b;
}

.cart-confirm-help {
  grid-template-columns: 48px 1fr;
}

.cart-confirm-help a {
  grid-column: 2;
  justify-self: start;
}

.cart-payment-confirmed div {
  display: grid;
  grid-template-columns: 42px 1fr auto;
  gap: 10px;
  align-items: center;
  margin-top: 14px;
}

.cart-payment-confirmed span strong,
.cart-payment-confirmed span small {
  display: block;
}

.cart-payment-confirmed span small {
  color: #64748b;
}

.cart-payment-confirmed em {
  display: inline-block;
  margin-top: 10px;
  border-radius: 4px;
  background: #dff7ef;
  color: var(--teal);
  padding: 5px 8px;
  font-style: normal;
  font-weight: 700;
}

.cart-confirmation-benefits {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin-top: 20px;
  border: 1px solid var(--line);
  background: white;
}

.cart-confirmation-benefits article {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 12px;
  align-items: center;
  padding: 20px;
  border-right: 1px solid var(--line);
}

.cart-confirmation-benefits article:last-child {
  border-right: 0;
}

.cart-confirmation-benefits svg {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  padding: 10px;
  background: #e4f8f4;
  color: var(--teal);
}

.cart-confirmation-benefits strong,
.cart-confirmation-benefits span {
  display: block;
}

.cart-confirmation-benefits span {
  color: #64748b;
  font-size: .82rem;
}

@media (max-width: 980px) {
  .cart-confirmation-layout,
  .cart-confirmation-benefits {
    grid-template-columns: 1fr;
  }

  .cart-order-meta,
  .cart-order-row {
    grid-template-columns: 1fr;
  }

  .cart-order-row > span {
    padding: 8px 14px;
  }

  .cart-confirmation-benefits article {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
}
