/*
 * ClearlyHost public design system
 * Scope: shared tokens, public website, order flow, customer portal and legal pages.
 * Admin-only components live in admin.css.
 */

:root {
  --navy-950: #07111f;
  --navy-900: #0f172a;
  --navy-800: #17233b;
  --navy-700: #243451;
  --slate-700: #334155;
  --slate-600: #475569;
  --slate-500: #64748b;
  --slate-400: #94a3b8;
  --slate-300: #cbd5e1;
  --slate-200: #e2e8f0;
  --slate-100: #f1f5f9;
  --slate-50: #f8fafc;
  --white: #fff;
  --emerald-700: #047857;
  --emerald-600: #059669;
  --emerald-500: #10b981;
  --emerald-400: #34d399;
  --emerald-100: #d1fae5;
  --gold-600: #d97706;
  --gold-500: #f59e0b;
  --gold-300: #fcd34d;
  --red-600: #dc2626;
  --red-100: #fee2e2;
  --blue-500: #3b82f6;
  --blue-600: #2563eb;
  --blue-100: #dbeafe;
  --emerald-300: #6ee7b7;
  --success-strong: #166534;
  --success-surface: #f0fdf4;
  --danger-strong: #991b1b;
  --danger-surface: #fef2f2;
  --warning-strong: #92400e;
  --warning-surface: #fef3c7;
  --neutral-strong: #4b5563;
  --neutral-surface: #f3f4f6;
  --status-paid-marker: #22c55e;
  --status-cancelled-marker: #9ca3af;
  --radius-sm: 8px;
  --radius: 16px;
  --radius-lg: 28px;
  --shadow-sm: 0 8px 28px rgba(15, 23, 42, 0.08);
  --shadow: 0 20px 60px rgba(15, 23, 42, 0.12);
  --shadow-dark: 0 28px 80px rgba(2, 8, 23, 0.28);
  --container: 1240px;
  --transition: 180ms ease;
}

/* ClearlyHost 2026.08.10 — modern three-step shop checkout */
.ch-shop-hero {
  background:
    radial-gradient(
      circle at 82% 10%,
      rgba(26, 181, 98, 0.24),
      transparent 27%
    ),
    linear-gradient(125deg, #041634 0%, #07336f 72%, #075948 130%);
  color: #fff;
  overflow: hidden;
  padding: 78px 0 105px;
  position: relative;
}

.ch-shop-hero::after {
  background: linear-gradient(
    90deg,
    var(--emerald-500),
    var(--blue-500),
    var(--gold-500)
  );
  bottom: 0;
  content: "";
  height: 4px;
  inset-inline: 0;
  position: absolute;
}

.ch-shop-hero-inner {
  align-items: center;
  display: grid;
  gap: 48px;
  grid-template-columns: minmax(0, 1.5fr) minmax(280px, 0.65fr);
}

.ch-shop-hero h1 {
  color: #fff;
  font-size: clamp(2.4rem, 5vw, 4.55rem);
  letter-spacing: -0.045em;
  line-height: 1.02;
  margin: 12px 0 18px;
  max-width: 850px;
}

.ch-shop-hero p {
  color: #cbdcf2;
  font-size: 1.12rem;
  margin: 0;
  max-width: 760px;
}

.ch-shop-assurance {
  align-items: center;
  backdrop-filter: blur(12px);
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 22px;
  display: grid;
  gap: 2px 13px;
  grid-template-columns: 46px 1fr;
  padding: 22px;
}

.ch-shop-assurance > span {
  align-items: center;
  background: #1daf66;
  border-radius: 50%;
  display: flex;
  font-size: 1.25rem;
  grid-row: 1 / 3;
  height: 46px;
  justify-content: center;
  width: 46px;
}

.ch-shop-assurance strong {
  color: #fff;
  font-size: 0.98rem;
}
.ch-shop-assurance small {
  color: #bcd2eb;
  line-height: 1.45;
}

.ch-checkout-section {
  background: #f3f7f8;
  padding-top: 0;
}
.ch-checkout-progress {
  margin: -43px auto 34px;
  max-width: 980px;
  position: relative;
  z-index: 2;
}

.order-progress.ch-checkout-progress {
  background: #fff;
  border: 1px solid #dce7ea;
  border-radius: 22px;
  box-shadow: 0 18px 55px rgba(8, 35, 64, 0.12);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding: 14px;
}

.ch-checkout-progress li {
  align-items: center;
  border-radius: 15px;
  display: grid;
  gap: 0 12px;
  grid-template-columns: 42px 1fr;
  padding: 13px 16px;
  text-align: start;
}

.ch-checkout-progress li::after {
  display: none;
}
.ch-checkout-progress li > span {
  grid-row: 1 / 3;
  margin: 0;
}
.ch-checkout-progress li strong {
  color: #102a43;
  font-size: 0.92rem;
}
.ch-checkout-progress li small {
  color: #6c8093;
  font-size: 0.75rem;
  font-weight: 600;
}
.ch-checkout-progress li.is-active {
  background: #eaf8f1;
}

.ch-checkout {
  margin: 0 auto;
  max-width: 1160px;
}
.ch-checkout-card {
  background: #fff;
  border: 1px solid #dce7ea;
  border-radius: 28px;
  box-shadow: 0 20px 60px rgba(8, 35, 64, 0.08);
  padding: clamp(24px, 4vw, 50px);
}

.ch-domain-choice-grid {
  display: grid;
  gap: 15px;
  grid-template-columns: repeat(4, 1fr);
  margin: 28px 0;
}

.ch-domain-choice {
  background: #f8fafb;
  border: 1px solid #d9e4e8;
  border-radius: 18px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  min-height: 168px;
  padding: 19px;
  transition:
    border-color 160ms ease,
    box-shadow 160ms ease,
    transform 160ms ease;
}

.ch-domain-choice:hover {
  border-color: #84b9a0;
  transform: translateY(-2px);
}
.ch-domain-choice.is-selected {
  background: #eefaf4;
  border-color: #159a58;
  box-shadow: 0 0 0 3px rgba(21, 154, 88, 0.1);
}
.ch-domain-choice input {
  height: 1px;
  opacity: 0;
  position: absolute;
  width: 1px;
}
.ch-choice-icon {
  align-items: center;
  background: #e6eef5;
  border-radius: 12px;
  color: #0e4c91;
  display: flex;
  font-size: 1.15rem;
  font-weight: 900;
  height: 40px;
  justify-content: center;
  margin-bottom: 14px;
  width: 40px;
}
.ch-domain-choice.is-selected .ch-choice-icon {
  background: #159a58;
  color: #fff;
}
.ch-domain-choice strong {
  color: #102a43;
  font-size: 0.95rem;
  margin-bottom: 6px;
}
.ch-domain-choice small {
  color: #64798d;
  line-height: 1.45;
}

.ch-checkout-domain {
  background: #f5f8fb;
  border: 1px solid #dce7ea;
  border-radius: 20px;
  padding: 24px;
}
.ch-checkout-domain.is-skipped {
  display: none;
}
.ch-checkout-domain > label {
  color: #153552;
  display: block;
  font-size: 0.84rem;
  font-weight: 800;
  margin-bottom: 9px;
}
.ch-domain-result.is-unknown {
  background: #fff9e9;
  border-color: #d9a928;
}
.ch-domain-result.is-unknown strong {
  color: #826006;
}
.ch-domain-suggestion.is-unknown {
  border-style: dashed;
}

.ch-package-selector {
  grid-template-columns: repeat(3, 1fr);
}
.ch-package-selector .package-option {
  min-height: 355px;
  padding: 26px;
  position: relative;
}
.ch-package-selector .package-option > em {
  background: #0d8048;
  border-radius: 999px;
  color: #fff;
  font-size: 0.69rem;
  font-style: normal;
  font-weight: 900;
  inset-inline-end: 18px;
  padding: 6px 10px;
  position: absolute;
  top: 17px;
}
.ch-package-selector .package-option b {
  color: #082c5a;
  display: block;
  font-size: 1.65rem;
  margin: 18px 0 4px;
}
.ch-package-selector .package-option b i {
  color: #748598;
  font-size: 0.75rem;
  font-style: normal;
  font-weight: 650;
}
.ch-package-selector .check-list {
  margin-top: 20px;
}

.ch-term-selector {
  border: 0;
  margin: 32px 0 0;
  padding: 0;
}
.ch-term-selector legend {
  color: #102a43;
  font-size: 1rem;
  font-weight: 850;
  margin-bottom: 13px;
}
.ch-term-selector > div {
  display: grid;
  gap: 13px;
  grid-template-columns: repeat(3, 1fr);
}
.ch-term-selector label {
  cursor: pointer;
  position: relative;
}
.ch-term-selector input {
  height: 1px;
  opacity: 0;
  position: absolute;
  width: 1px;
}
.ch-term-selector label > span {
  background: #f7f9fb;
  border: 1px solid #dbe5e9;
  border-radius: 15px;
  display: flex;
  flex-direction: column;
  min-height: 82px;
  padding: 17px;
}
.ch-term-selector input:checked + span {
  background: #eefaf4;
  border-color: #159a58;
  box-shadow: 0 0 0 3px rgba(21, 154, 88, 0.1);
}
.ch-term-selector strong {
  color: #14324e;
}
.ch-term-selector small {
  color: #118047;
  font-weight: 750;
  margin-top: 3px;
}

.ch-checkout-columns {
  display: grid;
  gap: 38px;
  grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.75fr);
}
.ch-form-subtitle {
  border-bottom: 1px solid #e2eaed;
  color: #102a43;
  font-size: 1rem;
  margin: 0 0 20px;
  padding-bottom: 12px;
}
.ch-checkout-payments {
  display: grid;
  gap: 11px;
  margin-bottom: 24px;
}
.ch-checkout-payments .payment-option {
  min-height: 75px;
}
.ch-processing-details {
  background: #f6f9fa;
  border: 1px solid #dce7ea;
  border-radius: 18px;
  margin-top: 32px;
  padding: 0 22px;
}
.ch-processing-details summary {
  align-items: center;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  list-style: none;
  padding: 20px 0;
}
.ch-processing-details summary::-webkit-details-marker {
  display: none;
}
.ch-processing-details summary strong {
  color: #123552;
}
.ch-processing-details summary span {
  color: #667d90;
  font-size: 0.8rem;
}
.ch-processing-details[open] {
  padding-bottom: 24px;
}
.ch-checkout-consent {
  margin-top: 24px;
}
.ch-approval-notice {
  align-items: flex-start;
  background: #eaf8f1;
  border: 1px solid #a9dcc2;
  border-radius: 16px;
  display: flex;
  gap: 13px;
  margin-top: 22px;
  padding: 17px;
}
.ch-approval-notice > span {
  align-items: center;
  background: #159a58;
  border-radius: 50%;
  color: #fff;
  display: flex;
  flex: 0 0 30px;
  height: 30px;
  justify-content: center;
}
.ch-approval-notice strong {
  color: #0d623a;
}
.ch-approval-notice p {
  color: #3b6653;
  font-size: 0.84rem;
  margin: 3px 0 0;
}

@media (max-width: 980px) {
  .ch-shop-hero-inner,
  .ch-checkout-columns {
    grid-template-columns: 1fr;
  }
  .ch-domain-choice-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .ch-package-selector {
    grid-template-columns: 1fr;
  }
  .ch-package-selector .package-option {
    min-height: 0;
  }
}

@media (max-width: 680px) {
  .ch-shop-hero {
    padding: 54px 0 90px;
  }
  .ch-shop-hero h1 {
    font-size: 2.45rem;
  }
  .order-progress.ch-checkout-progress {
    grid-template-columns: 1fr;
    margin-top: -35px;
  }
  .ch-checkout-progress li:not(.is-active) small {
    display: none;
  }
  .ch-checkout-card {
    border-radius: 20px;
    padding: 22px 16px;
  }
  .ch-domain-choice-grid,
  .ch-term-selector > div {
    grid-template-columns: 1fr;
  }
  .ch-domain-choice {
    min-height: 0;
  }
  .ch-checkout-domain {
    padding: 17px;
  }
  .ch-processing-details summary {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--navy-900);
  font-family: Inter, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

html[dir="rtl"] body {
  font-family: Tahoma, Arial, "Segoe UI", sans-serif;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

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

button,
select {
  cursor: pointer;
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
summary:focus-visible {
  outline: 3px solid rgba(16, 185, 129, 0.32);
  outline-offset: 3px;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  line-height: 1.12;
  letter-spacing: -0.035em;
}

html[dir="rtl"] h1,
html[dir="rtl"] h2,
html[dir="rtl"] h3 {
  letter-spacing: 0;
}

p {
  color: var(--slate-600);
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.narrow {
  max-width: 880px;
}

.section {
  padding: 96px 0;
}

.section-light {
  background: var(--slate-50);
}

.section-heading {
  margin-bottom: 42px;
}

.section-heading h2 {
  max-width: 780px;
  margin-bottom: 16px;
  font-size: clamp(2rem, 4vw, 3.35rem);
}

.section-heading p {
  max-width: 720px;
  margin-bottom: 0;
  font-size: 1.1rem;
}

.section-heading.centered {
  display: flex;
  align-items: center;
  flex-direction: column;
  text-align: center;
}

.split-heading {
  display: grid;
  align-items: end;
  grid-template-columns: 1.4fr 0.8fr;
  gap: 48px;
}

.split-heading p {
  margin-bottom: 12px;
}

.eyebrow,
.mini-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  color: var(--emerald-400);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 24px;
  height: 2px;
  background: currentColor;
  content: "";
}

.eyebrow-dark {
  color: var(--emerald-700);
}

.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  border: 0 !important;
  margin: -1px !important;
  clip: rect(0, 0, 0, 0) !important;
  overflow: hidden !important;
  white-space: nowrap !important;
}

.skip-link {
  position: fixed;
  z-index: 9999;
  inset-block-start: 12px;
  inset-inline-start: 12px;
  padding: 10px 16px;
  border-radius: var(--radius-sm);
  background: var(--white);
  color: var(--navy-900);
  box-shadow: var(--shadow);
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 11px 19px;
  border: 1px solid transparent;
  border-radius: 12px;
  font-weight: 750;
  line-height: 1.2;
  text-align: center;
  transition:
    transform var(--transition),
    background var(--transition),
    border-color var(--transition),
    box-shadow var(--transition);
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: linear-gradient(135deg, var(--emerald-500), var(--emerald-600));
  color: var(--white);
  box-shadow: 0 11px 28px rgba(16, 185, 129, 0.22);
}

.button-primary:hover {
  background: linear-gradient(135deg, var(--emerald-400), var(--emerald-600));
  box-shadow: 0 15px 32px rgba(16, 185, 129, 0.28);
}

.button-secondary {
  border-color: var(--slate-300);
  background: var(--white);
  color: var(--navy-900);
}

.button-secondary:hover {
  border-color: var(--emerald-500);
}

.button-light {
  border-color: rgba(255, 255, 255, 0.26);
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  backdrop-filter: blur(12px);
}

.button-light:hover {
  background: rgba(255, 255, 255, 0.17);
}

.button-ghost {
  border-color: var(--slate-200);
  background: transparent;
}

.button-gold {
  background: linear-gradient(135deg, var(--gold-300), var(--gold-500));
  color: var(--navy-950);
  box-shadow: 0 14px 34px rgba(245, 158, 11, 0.22);
}

.button-large {
  min-height: 54px;
  padding: 15px 24px;
  border-radius: 14px;
}

.button-small {
  min-height: 36px;
  padding: 8px 12px;
  border-radius: 9px;
  font-size: 0.84rem;
}

.button-block {
  width: 100%;
}

.announcement {
  position: relative;
  z-index: 60;
  background: var(--navy-950);
  color: var(--white);
  font-size: 0.83rem;
}

.announcement-inner {
  display: flex;
  min-height: 36px;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.announcement a {
  color: var(--emerald-400);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.announcement-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--emerald-400);
  box-shadow: 0 0 0 6px rgba(52, 211, 153, 0.12);
}

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  border-bottom: 1px solid rgba(226, 232, 240, 0.9);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(18px);
  transition: box-shadow var(--transition);
}

.site-header.is-scrolled {
  box-shadow: 0 12px 35px rgba(15, 23, 42, 0.08);
}

.header-inner {
  display: grid;
  min-height: 80px;
  align-items: center;
  grid-template-columns: auto 1fr auto;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex-direction: column;
  gap: 0;
}

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

.brand span {
  color: var(--slate-500);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.035em;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3px;
}

.nav-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 5px;
  padding: 10px 11px;
  border: 0;
  border-radius: 10px;
  background: transparent;
  color: var(--slate-700);
  font-size: 0.88rem;
  font-weight: 700;
  white-space: nowrap;
  transition:
    background var(--transition),
    color var(--transition);
}

.nav-link:hover {
  background: var(--slate-100);
  color: var(--emerald-700);
}

.nav-dropdown {
  position: relative;
}

.nav-mega,
.language-panel {
  position: absolute;
  visibility: hidden;
  z-index: 80;
  inset-block-start: calc(100% + 12px);
  inset-inline-start: 0;
  width: 570px;
  padding: 12px;
  border: 1px solid var(--slate-200);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
  opacity: 0;
  transform: translateY(8px);
  transition:
    opacity var(--transition),
    transform var(--transition),
    visibility var(--transition);
}

.nav-dropdown.is-open > .nav-mega,
.nav-dropdown.is-open > .language-panel {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}

.nav-mega a {
  display: block;
  padding: 15px;
  border-radius: 12px;
  transition: background var(--transition);
}

.nav-mega a:hover {
  background: var(--slate-50);
}

.nav-mega strong {
  display: block;
  margin-bottom: 3px;
  color: var(--navy-900);
}

.nav-mega small {
  display: block;
  color: var(--slate-500);
  line-height: 1.45;
}

.nav-mega-compact {
  width: 250px;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.language-button {
  display: inline-flex;
  min-width: 52px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 8px;
  border: 1px solid var(--slate-200);
  border-radius: 10px;
  background: var(--white);
  font-size: 0.8rem;
  font-weight: 800;
}

.language-panel {
  inset-inline-start: auto;
  inset-inline-end: 0;
  width: 265px;
}

.language-panel a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 10px;
  font-weight: 650;
}

.language-panel a:hover,
.language-panel a[aria-current="page"] {
  background: var(--slate-100);
}

.language-panel .google-translate {
  margin-top: 7px;
  border-top: 1px solid var(--slate-200);
  padding-top: 14px;
  color: var(--blue-600);
  font-size: 0.82rem;
}

.language-panel .google-translate span {
  display: inline-flex;
  width: 24px;
  height: 24px;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  background: var(--blue-600);
  color: var(--white);
  font-weight: 900;
}

.flag {
  display: inline-block;
  width: 22px;
  height: 15px;
  border: 1px solid rgba(15, 23, 42, 0.12);
  border-radius: 2px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.3);
}

.flag-de {
  background: linear-gradient(#111 0 33%, #d00 33% 66%, #fc0 66%);
}

.flag-fr {
  background: linear-gradient(90deg, #163ca6 0 33%, #fff 33% 66%, #ed2939 66%);
}

.flag-en {
  background: linear-gradient(
    135deg,
    #173d7a 0 40%,
    #fff 40% 48%,
    #c8102e 48% 58%,
    #fff 58% 66%,
    #173d7a 66%
  );
}

.flag-ar {
  background: #c1272d;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.3),
    inset 9px 5px 0 -7px #0a8f44;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 44px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  border: 1px solid var(--slate-200);
  border-radius: 10px;
  background: var(--white);
}

.menu-toggle > span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--navy-900);
  transition:
    transform var(--transition),
    opacity var(--transition);
}

.menu-toggle[aria-expanded="true"] > span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] > span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] > span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 720px;
  overflow: hidden;
  background:
    radial-gradient(
      circle at 20% 20%,
      rgba(16, 185, 129, 0.15),
      transparent 35%
    ),
    linear-gradient(135deg, var(--navy-950), var(--navy-800));
  color: var(--white);
}

.hero::after {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 52px 52px;
  content: "";
  mask-image: linear-gradient(to bottom, black, transparent 85%);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  min-height: 720px;
  align-items: center;
  grid-template-columns: 1.04fr 0.9fr;
  gap: 75px;
  padding-block: 80px 110px;
}

.hero-copy h1 {
  max-width: 780px;
  margin-bottom: 24px;
  font-size: clamp(2.8rem, 5.5vw, 5.1rem);
}

.hero-lead {
  max-width: 690px;
  margin-bottom: 30px;
  color: var(--slate-300);
  font-size: clamp(1.08rem, 1.8vw, 1.28rem);
}

.hero-actions,
.center-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  padding: 0;
  margin: 28px 0 0;
  list-style: none;
  color: var(--slate-300);
  font-size: 0.9rem;
}

.hero-points li::before,
.check-list li::before {
  display: inline-flex;
  width: 21px;
  height: 21px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-inline-end: 8px;
  background: var(--emerald-100);
  color: var(--emerald-700);
  content: "✓";
  font-size: 0.72rem;
  font-weight: 900;
}

.hero-visual {
  position: relative;
  max-width: 530px;
  margin-inline-start: auto;
}

.hero-image-frame {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 40px 40px 80px 40px;
  box-shadow: var(--shadow-dark);
}

.hero-image-frame picture {
  display: block;
}

.hero-image-frame img {
  display: block;
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.hero-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(7, 17, 31, 0.55), transparent 50%);
}

.floating-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 16px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 16px;
  background: rgba(15, 23, 42, 0.78);
  box-shadow: var(--shadow-dark);
  backdrop-filter: blur(16px);
}

.floating-card strong,
.floating-card small {
  display: block;
}

.floating-card small {
  color: var(--slate-300);
  font-size: 0.72rem;
}

.floating-card-top {
  inset-block-start: 12%;
  inset-inline-start: -46px;
}

.floating-card-bottom {
  inset-block-end: 10%;
  inset-inline-end: -28px;
}

.floating-icon {
  display: inline-flex;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: var(--emerald-500);
  font-weight: 900;
}

.pulse-dot {
  position: relative;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--emerald-400);
}

.pulse-dot::after {
  position: absolute;
  inset: -7px;
  border: 1px solid var(--emerald-400);
  border-radius: 50%;
  animation: pulse 1.8s infinite;
  content: "";
}

@keyframes pulse {
  from {
    opacity: 1;
    transform: scale(0.5);
  }
  to {
    opacity: 0;
    transform: scale(1.2);
  }
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(1px);
}

.hero-orb-one {
  width: 320px;
  height: 320px;
  inset-block-start: -170px;
  inset-inline-end: 12%;
  border: 1px solid rgba(52, 211, 153, 0.22);
}

.hero-orb-two {
  width: 520px;
  height: 520px;
  inset-block-end: -390px;
  inset-inline-start: 30%;
  background: rgba(16, 185, 129, 0.1);
  filter: blur(80px);
}

.domain-strip {
  position: relative;
  z-index: 4;
  margin-top: -56px;
}

.domain-card {
  display: grid;
  align-items: center;
  grid-template-columns: 0.85fr 1.4fr;
  gap: 22px 36px;
  padding: 26px 30px;
  border: 1px solid var(--slate-200);
  border-radius: 22px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.domain-card h2 {
  margin-bottom: 0;
  font-size: 1.35rem;
}

.domain-card .mini-label {
  margin-bottom: 5px;
  color: var(--emerald-700);
  font-size: 0.68rem;
}

.domain-form {
  display: flex;
  gap: 10px;
}

.domain-input-wrap {
  display: flex;
  min-width: 0;
  flex: 1;
  align-items: center;
  overflow: hidden;
  border: 1px solid var(--slate-300);
  border-radius: 12px;
  background: var(--slate-50);
}

.domain-input-wrap span {
  padding-inline-start: 15px;
  color: var(--slate-500);
  font-weight: 700;
}

.domain-input-wrap input {
  width: 100%;
  min-height: 50px;
  padding: 11px 14px 11px 4px;
  border: 0;
  outline: 0;
  background: transparent;
}

.domain-result {
  grid-column: 2;
  margin: -12px 0 0;
  color: var(--slate-500);
  font-size: 0.78rem;
}

.domain-result.is-success {
  color: var(--emerald-700);
}

.domain-result.is-error {
  color: var(--red-600);
}

.trust-grid,
.feature-grid,
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.trust-card,
.service-card,
.feature-card {
  position: relative;
  padding: 26px;
  border: 1px solid var(--slate-200);
  border-radius: var(--radius);
  background: var(--white);
  transition:
    border-color var(--transition),
    transform var(--transition),
    box-shadow var(--transition);
}

.trust-card:hover,
.service-card:hover,
.feature-card:hover {
  border-color: rgba(16, 185, 129, 0.45);
  box-shadow: var(--shadow-sm);
  transform: translateY(-4px);
}

.trust-card h3,
.service-card h2,
.feature-card h2 {
  margin: 18px 0 10px;
  font-size: 1.12rem;
}

.trust-card p,
.service-card p,
.feature-card p {
  margin-bottom: 0;
  font-size: 0.92rem;
}

.feature-icon {
  display: inline-flex;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--emerald-100), #ecfdf5);
  color: var(--emerald-700);
  font-size: 1.35rem;
  font-weight: 900;
  transition: transform var(--transition);
}

article:hover > .feature-icon,
article:hover .feature-icon {
  transform: rotate(-5deg) scale(1.06);
}

.icon-shield::before {
  content: "◆";
}

.icon-support::before {
  content: "◎";
}

.icon-contract::before {
  content: "≣";
}

.icon-globe::before {
  content: "◉";
}

.icon-window::before {
  content: "▣";
}

.icon-server::before {
  content: "▤";
}

.icon-lock::before {
  content: "●";
}

.icon-mail::before {
  content: "✉";
}

.icon-chart::before {
  content: "↗";
}

.icon-user::before {
  content: "♙";
}

.icon-database::before {
  content: "▥";
}

.icon-pulse::before {
  content: "⌁";
}

.icon-alert::before {
  content: "!";
}

.icon-pen::before {
  content: "✎";
}

.industry-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.industry-card {
  overflow: hidden;
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.industry-visual {
  display: flex;
  height: 250px;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: linear-gradient(135deg, #eef2ff, #ecfdf5);
}

.industry-medical .industry-visual {
  background: linear-gradient(135deg, #eff6ff, #ecfeff);
}

.industry-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.industry-content {
  padding: 34px;
}

.industry-kicker {
  display: inline-flex;
  margin-bottom: 10px;
  color: var(--gold-600);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.industry-content h3 {
  margin-bottom: 14px;
  font-size: 1.75rem;
}

.check-list {
  padding: 0;
  margin: 24px 0;
  list-style: none;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 11px;
  color: var(--slate-700);
}

.check-list.compact {
  margin: 20px 0;
  font-size: 0.9rem;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--emerald-700);
  font-weight: 800;
}

.text-link span {
  transition: transform var(--transition);
}

.text-link:hover span {
  transform: translateX(4px);
}

html[dir="rtl"] .text-link span {
  transform: rotate(180deg);
}

html[dir="rtl"] .text-link:hover span {
  transform: rotate(180deg) translateX(4px);
}

.platform-section {
  overflow: hidden;
  background:
    radial-gradient(
      circle at 90% 10%,
      rgba(16, 185, 129, 0.14),
      transparent 35%
    ),
    var(--navy-900);
  color: var(--white);
}

.platform-grid {
  display: grid;
  align-items: center;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 80px;
}

.platform-copy h2 {
  margin-bottom: 18px;
  font-size: clamp(2.2rem, 4vw, 3.6rem);
}

.platform-copy p {
  margin-bottom: 25px;
  color: var(--slate-300);
}

.platform-cards {
  display: grid;
  gap: 14px;
}

.platform-cards article {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.045);
}

.platform-cards h3 {
  margin: 2px 0 7px;
  font-size: 1.15rem;
}

.platform-cards p {
  margin: 0;
  color: var(--slate-300);
  font-size: 0.92rem;
}

.flow-section {
  background: linear-gradient(180deg, var(--white), var(--slate-50));
}

.process-grid {
  position: relative;
  display: grid;
  padding: 0;
  margin: 0 0 40px;
  counter-reset: flow;
  grid-template-columns: repeat(4, 1fr);
  list-style: none;
}

.process-grid::before {
  position: absolute;
  z-index: 0;
  top: 26px;
  right: 12.5%;
  left: 12.5%;
  height: 2px;
  background: linear-gradient(90deg, var(--emerald-500), var(--gold-500));
  content: "";
}

.process-grid li {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 14px;
  padding: 0 16px;
  text-align: center;
}

.process-grid li > span {
  display: inline-flex;
  width: 54px;
  height: 54px;
  align-items: center;
  justify-content: center;
  border: 5px solid var(--white);
  border-radius: 50%;
  background: var(--navy-900);
  color: var(--white);
  box-shadow: 0 0 0 1px var(--slate-200);
  font-weight: 900;
}

.process-grid strong {
  max-width: 230px;
  color: var(--slate-700);
  line-height: 1.4;
}

.center-actions {
  justify-content: center;
}

.pricing-grid {
  display: grid;
  align-items: stretch;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 22px;
}

.pricing-card {
  position: relative;
  display: flex;
  min-width: 0;
  flex-direction: column;
  padding: 32px;
  border: 1px solid var(--slate-200);
  border-radius: 22px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.pricing-card.is-recommended {
  border: 2px solid var(--emerald-500);
  box-shadow: 0 25px 65px rgba(16, 185, 129, 0.13);
  transform: translateY(-10px);
}

.pricing-badge {
  position: absolute;
  inset-block-start: -14px;
  inset-inline-end: 22px;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--emerald-500);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.05em;
}

.pricing-heading {
  min-height: 105px;
}

.pricing-heading h3 {
  margin-bottom: 8px;
  font-size: 1.45rem;
}

.pricing-heading p {
  font-size: 0.9rem;
}

.pricing-amount {
  display: flex;
  align-items: baseline;
  gap: 5px;
}

.pricing-amount strong {
  color: var(--navy-900);
  font-size: 1.3rem;
}

.pricing-amount strong span {
  font-size: 2.45rem;
  letter-spacing: -0.05em;
}

.pricing-amount small,
.pricing-alt,
.pricing-tax {
  color: var(--slate-500);
}

.pricing-alt {
  font-size: 0.84rem;
}

.pricing-card .check-list {
  flex: 1;
  font-size: 0.9rem;
}

.pricing-card .button {
  margin-top: auto;
}

.pricing-tax {
  display: block;
  margin-top: 10px;
  font-size: 0.68rem;
  text-align: center;
}

.faq-layout {
  display: grid;
  grid-template-columns: 0.65fr 1.35fr;
  gap: 75px;
}

.accordion details {
  border-bottom: 1px solid var(--slate-200);
}

.accordion summary {
  display: flex;
  min-height: 68px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  cursor: pointer;
  font-size: 1.05rem;
  font-weight: 800;
  list-style: none;
}

.accordion summary::-webkit-details-marker {
  display: none;
}

.accordion summary span {
  font-size: 1.6rem;
  font-weight: 400;
  transition: transform var(--transition);
}

.accordion details[open] summary span {
  transform: rotate(45deg);
}

.accordion details p {
  padding-bottom: 22px;
  margin: 0;
}

.cta-band {
  padding: 60px 0;
  background:
    radial-gradient(
      circle at 15% 20%,
      rgba(16, 185, 129, 0.2),
      transparent 35%
    ),
    var(--navy-950);
  color: var(--white);
}

.cta-band-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 35px;
}

.cta-band h2 {
  max-width: 850px;
  margin: 0;
  font-size: clamp(1.9rem, 4vw, 3.2rem);
}

.cta-band p {
  max-width: 700px;
  margin: 12px 0 0;
  color: var(--slate-300);
}

.site-footer {
  padding: 72px 0 0;
  background: #060d18;
  color: var(--white);
}

.footer-grid {
  display: grid;
  padding-bottom: 52px;
  grid-template-columns: 1.35fr repeat(3, 0.75fr);
  gap: 60px;
}

.footer-brand {
  align-items: flex-start;
}

.footer-brand img {
  width: 185px;
  filter: brightness(0) invert(1);
}

.footer-brand p {
  max-width: 330px;
  margin: 18px 0;
  color: var(--slate-400);
}

.footer-trust {
  color: var(--emerald-400);
  font-size: 0.8rem;
}

.footer-grid h2 {
  margin: 8px 0 18px;
  color: var(--slate-400);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-grid > div:not(.footer-brand) {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 9px;
}

.footer-grid a,
.footer-grid span {
  color: var(--slate-300);
  font-size: 0.9rem;
}

.footer-grid a:hover {
  color: var(--emerald-400);
}

.footer-bottom {
  display: flex;
  min-height: 70px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--slate-500);
  font-size: 0.78rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.back-to-top {
  position: fixed;
  visibility: hidden;
  z-index: 40;
  right: 22px;
  bottom: 22px;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 12px;
  background: var(--navy-900);
  color: var(--white);
  box-shadow: var(--shadow);
  opacity: 0;
  transform: translateY(12px);
  transition:
    opacity var(--transition),
    transform var(--transition),
    visibility var(--transition);
}

html[dir="rtl"] .back-to-top {
  right: auto;
  left: 22px;
}

.back-to-top.is-visible {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}

.page-hero,
.order-hero,
.agreement-hero,
.portal-header {
  padding: 105px 0 90px;
  background:
    radial-gradient(
      circle at 75% 20%,
      rgba(16, 185, 129, 0.14),
      transparent 38%
    ),
    linear-gradient(135deg, var(--navy-950), var(--navy-800));
  color: var(--white);
}

.page-hero h1,
.order-hero h1,
.agreement-hero h1,
.portal-header h1 {
  margin-bottom: 22px;
  font-size: clamp(2.7rem, 5.5vw, 5rem);
}

.page-hero p,
.order-hero p,
.agreement-hero p,
.portal-header p {
  max-width: 790px;
  margin-bottom: 28px;
  color: var(--slate-300);
  font-size: 1.15rem;
}

.page-hero-grid {
  display: grid;
  align-items: center;
  grid-template-columns: 1fr 0.7fr;
  gap: 60px;
}

.page-hero-grid img {
  width: 100%;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.25));
}

.services-grid {
  grid-template-columns: repeat(3, 1fr);
}

.service-card {
  min-height: 255px;
  padding: 32px;
}

.service-card h2 {
  font-size: 1.35rem;
}

.feature-grid {
  grid-template-columns: repeat(3, 1fr);
}

.feature-card {
  min-height: 250px;
  padding: 30px;
}

.feature-number {
  display: block;
  color: var(--emerald-600);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.industry-hero {
  overflow: hidden;
  padding: 90px 0;
  background: linear-gradient(135deg, var(--navy-950), #172554);
  color: var(--white);
}

.medical-hero {
  background: linear-gradient(135deg, #082f49, var(--navy-900));
}

.industry-hero-grid {
  display: grid;
  align-items: center;
  grid-template-columns: 1fr 0.7fr;
  gap: 60px;
}

.industry-hero h1 {
  margin-bottom: 20px;
  font-size: clamp(2.7rem, 5vw, 4.8rem);
}

.industry-hero p {
  color: var(--slate-300);
  font-size: 1.15rem;
}

.industry-hero img {
  width: 100%;
  border-radius: var(--radius-lg);
}

.industry-feature-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.industry-feature-list article {
  display: flex;
  min-height: 115px;
  align-items: center;
  gap: 18px;
  padding: 23px;
  border: 1px solid var(--slate-200);
  border-radius: var(--radius);
  background: var(--white);
}

.industry-feature-list article > span {
  display: inline-flex;
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  border-radius: 11px;
  background: var(--navy-900);
  color: var(--white);
  font-weight: 900;
}

.medical-list article > span {
  background: var(--blue-600);
}

.industry-feature-list p {
  margin: 0;
  color: var(--slate-700);
  font-weight: 650;
}

.security-layers {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.security-layers article {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 30px;
  border: 1px solid var(--slate-200);
  border-radius: var(--radius);
}

.security-layers small {
  color: var(--emerald-700);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.security-layers h2 {
  margin: 7px 0 9px;
  font-size: 1.35rem;
}

.security-layers p {
  margin: 0;
}

.two-column-info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 35px;
}

.two-column-info article {
  padding: 36px;
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.two-column-info h2 {
  font-size: 1.65rem;
}

.dpa-variants {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.dpa-variants article {
  padding: 32px;
  border: 1px solid var(--slate-200);
  border-radius: 20px;
  background: var(--white);
}

.variant-badge {
  display: inline-flex;
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--navy-900);
  color: var(--white);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.dpa-variants h2 {
  margin: 20px 0 12px;
  font-size: 1.4rem;
}

.evidence-panel {
  display: grid;
  align-items: center;
  grid-template-columns: 1fr 0.75fr;
  gap: 60px;
  padding: 45px;
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.evidence-panel h2 {
  font-size: 2rem;
}

.hash-visual {
  display: grid;
  align-items: center;
  grid-template-columns: auto 1fr;
  gap: 10px;
  padding: 28px;
  border: 1px solid var(--slate-200);
  border-radius: var(--radius);
  background: var(--navy-900);
  color: var(--white);
}

.hash-visual code {
  color: var(--emerald-400);
  text-align: end;
}

.hash-line {
  height: 2px;
  background: linear-gradient(90deg, var(--emerald-500), var(--gold-500));
}

.hash-visual strong {
  display: inline-flex;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--emerald-500);
}

.legal-notice-card {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 28px;
  border: 1px solid #fde68a;
  border-radius: var(--radius);
  background: #fffbeb;
}

.legal-notice-card .feature-icon {
  flex: 0 0 auto;
  background: #fef3c7;
  color: var(--gold-600);
}

.legal-notice-card h2 {
  margin: 2px 0 8px;
  font-size: 1.25rem;
}

.legal-notice-card p {
  margin: 0;
}

.company-layout {
  display: grid;
  align-items: center;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 60px;
}

.company-layout > picture {
  display: block;
}

.company-layout > picture img {
  display: block;
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.error-card {
  width: min(100%, 720px);
  margin-inline: auto;
}

.error-card pre {
  max-width: 100%;
  overflow: auto;
  padding: 14px;
  border-radius: 10px;
  background: var(--navy-950);
  color: var(--slate-100);
  text-align: start;
  white-space: pre-wrap;
}

.error-card small {
  display: block;
  color: var(--slate-500);
  overflow-wrap: anywhere;
}

.company-values {
  display: grid;
  gap: 14px;
}

.company-values article {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 24px;
  border-bottom: 1px solid var(--slate-200);
}

.company-values article > span {
  color: var(--emerald-600);
  font-size: 0.75rem;
  font-weight: 900;
}

.company-values h2 {
  margin-bottom: 8px;
  font-size: 1.35rem;
}

.company-values p {
  margin: 0;
}

.support-steps {
  display: grid;
  padding: 0;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  list-style: none;
}

.support-steps li {
  padding: 28px;
  border: 1px solid var(--slate-200);
  border-radius: var(--radius);
}

.support-steps li > span {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: var(--navy-900);
  color: var(--white);
  font-weight: 900;
}

.support-steps h2 {
  margin: 24px 0 9px;
  font-size: 1.25rem;
}

.support-steps p {
  margin: 0;
  font-size: 0.92rem;
}

.contact-panel {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 50px;
  padding: 45px;
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.contact-details {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  gap: 10px;
}

.contact-details a {
  color: var(--emerald-700);
  font-weight: 800;
}

.error-page,
.success-page,
.verify-page,
.auth-page {
  display: flex;
  min-height: 70vh;
  align-items: center;
  padding: 90px 0;
  background: var(--slate-50);
  text-align: center;
}

.error-code {
  display: block;
  color: var(--emerald-600);
  font-size: clamp(5rem, 18vw, 10rem);
  font-weight: 900;
  letter-spacing: -0.08em;
  line-height: 0.9;
}

.error-page h1,
.success-page h1,
.verify-page h1 {
  margin: 25px 0 15px;
  font-size: clamp(2rem, 5vw, 3.6rem);
}

.flash-stack {
  position: fixed;
  z-index: 120;
  top: 98px;
  right: 20px;
  width: min(420px, calc(100% - 40px));
}

html[dir="rtl"] .flash-stack {
  right: auto;
  left: 20px;
}

.flash {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 15px;
  padding: 15px 17px;
  border: 1px solid var(--slate-200);
  border-radius: 12px;
  margin-bottom: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
  font-weight: 650;
}

.flash-success {
  border-color: #86efac;
  background: var(--success-surface);
  color: var(--success-strong);
}

.flash-error {
  border-color: #fecaca;
  background: var(--danger-surface);
  color: var(--danger-strong);
}

.flash button {
  padding: 0;
  border: 0;
  background: transparent;
  color: currentColor;
  font-size: 1.25rem;
}

.order-progress {
  display: flex;
  max-width: 650px;
  padding: 0;
  margin: 35px 0 0;
  list-style: none;
}

.order-progress li {
  position: relative;
  display: flex;
  flex: 1;
  align-items: center;
  gap: 8px;
  color: var(--slate-400);
  font-size: 0.82rem;
  font-weight: 800;
}

.order-progress li:not(:last-child)::after {
  height: 1px;
  flex: 1;
  margin-inline: 10px;
  background: rgba(255, 255, 255, 0.2);
  content: "";
}

.order-progress li span {
  display: inline-flex;
  width: 30px;
  height: 30px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
}

.order-progress li.is-active,
.order-progress li.is-complete {
  color: var(--white);
}

.order-progress li.is-active span,
.order-progress li.is-complete span {
  border-color: var(--emerald-400);
  background: var(--emerald-500);
}

.order-section {
  background: var(--slate-50);
}

.order-layout {
  display: grid;
  align-items: start;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 28px;
}

.order-form,
.order-trust-card,
.payment-form,
.order-summary-card {
  border: 1px solid var(--slate-200);
  border-radius: 22px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.form-step {
  padding: 36px;
}

.form-step[hidden] {
  display: none;
}

.form-step-heading {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--slate-200);
  margin-bottom: 28px;
}

.form-step-heading > span {
  display: inline-flex;
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: var(--navy-900);
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 900;
}

.form-step-heading h2 {
  margin: 2px 0 7px;
  font-size: 1.55rem;
}

.form-step-heading p {
  margin: 0;
  font-size: 0.9rem;
}

.package-selector {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.package-option {
  position: relative;
  display: flex;
  min-height: 230px;
  flex-direction: column;
  padding: 22px;
  border: 1px solid var(--slate-200);
  border-radius: var(--radius);
  cursor: pointer;
  transition:
    border-color var(--transition),
    box-shadow var(--transition);
}

.package-option input {
  position: absolute;
  opacity: 0;
}

.package-option.is-selected,
.package-option:has(input:checked) {
  border: 2px solid var(--emerald-500);
  box-shadow: 0 10px 28px rgba(16, 185, 129, 0.12);
}

.package-option-check {
  display: inline-flex;
  width: 27px;
  height: 27px;
  align-items: center;
  justify-content: center;
  align-self: flex-end;
  border: 1px solid var(--slate-300);
  border-radius: 50%;
  color: transparent;
}

.package-option:has(input:checked) .package-option-check {
  border-color: var(--emerald-500);
  background: var(--emerald-500);
  color: var(--white);
}

.package-option strong {
  margin: 8px 0;
  font-size: 1.15rem;
}

.package-option small {
  min-height: 68px;
  color: var(--slate-500);
}

.package-option b {
  margin-top: auto;
  color: var(--emerald-700);
}

.package-option > span:last-child {
  margin-top: 6px;
  color: var(--slate-500);
  font-size: 0.72rem;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.field {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 7px;
}

.field > span,
.field-group legend {
  color: var(--slate-700);
  font-size: 0.83rem;
  font-weight: 800;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 48px;
  padding: 11px 13px;
  border: 1px solid var(--slate-300);
  border-radius: 10px;
  background: var(--white);
  outline: 0;
  transition:
    border-color var(--transition),
    box-shadow var(--transition);
}

.field textarea {
  min-height: 110px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--emerald-500);
  box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.1);
}

.field input:user-invalid,
.field select:user-invalid,
.field textarea:user-invalid {
  border-color: var(--red-600);
}

.field small {
  color: var(--slate-500);
  font-size: 0.72rem;
}

.field-wide {
  grid-column: 1 / -1;
}

.field-group {
  padding: 0;
  border: 0;
  margin: 0 0 28px;
}

.field-group legend {
  margin-bottom: 12px;
  font-size: 0.9rem;
}

.choice-grid,
.checkbox-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.choice-grid-three {
  grid-template-columns: repeat(3, 1fr);
}

.choice-card,
.checkbox-card {
  position: relative;
  display: flex;
  min-height: 58px;
  align-items: center;
  gap: 10px;
  padding: 13px;
  border: 1px solid var(--slate-200);
  border-radius: 11px;
  cursor: pointer;
  font-size: 0.86rem;
}

.choice-card input,
.checkbox-card input {
  position: absolute;
  opacity: 0;
}

.choice-card:has(input:checked),
.checkbox-card:has(input:checked) {
  border-color: var(--emerald-500);
  background: #f0fdf8;
}

.choice-mark {
  width: 18px;
  height: 18px;
  border: 1px solid var(--slate-300);
  border-radius: 50%;
}

.choice-card:has(input:checked) .choice-mark {
  border: 5px solid var(--emerald-500);
}

.checkbox-card > span {
  display: inline-flex;
  width: 20px;
  height: 20px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--slate-300);
  border-radius: 6px;
  color: transparent;
  font-size: 0.7rem;
}

.checkbox-card:has(input:checked) > span {
  border-color: var(--emerald-500);
  background: var(--emerald-500);
  color: var(--white);
}

.consent-box,
.signature-consents {
  display: grid;
  gap: 11px;
  padding: 18px;
  border: 1px solid var(--slate-200);
  border-radius: 12px;
  margin-top: 24px;
  background: var(--slate-50);
}

.consent-box label,
.signature-consents label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--slate-700);
  font-size: 0.82rem;
}

.consent-box input,
.signature-consents input {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  margin-top: 2px;
  accent-color: var(--emerald-600);
}

.consent-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 2px 0 0;
  margin-inline-start: 28px;
  font-size: 0.82rem;
}

.consent-links a {
  color: var(--emerald-700);
  font-weight: 750;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.form-navigation {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  padding-top: 28px;
  margin-top: 28px;
  border-top: 1px solid var(--slate-200);
}

.order-aside {
  position: sticky;
  top: 110px;
}

.order-trust-card {
  padding: 28px;
}

.order-trust-card h2 {
  margin: 18px 0 8px;
}

.legal-small {
  margin: 15px 0 0;
  color: var(--slate-500);
  font-size: 0.72rem;
}

.payment-layout {
  display: grid;
  align-items: start;
  grid-template-columns: 1fr 410px;
  gap: 28px;
}

.payment-form,
.order-summary-card {
  padding: 28px;
}

.payment-option {
  position: relative;
  display: grid;
  min-height: 86px;
  align-items: center;
  grid-template-columns: auto auto 1fr;
  gap: 16px;
  padding: 16px;
  border: 1px solid var(--slate-200);
  border-radius: 13px;
  margin-bottom: 10px;
  cursor: pointer;
}

.payment-option:has(input:checked) {
  border-color: var(--emerald-500);
  background: #f0fdf8;
}

.payment-option.is-disabled {
  cursor: not-allowed;
  opacity: 0.52;
}

.payment-option input {
  position: absolute;
  opacity: 0;
}

.payment-radio {
  width: 20px;
  height: 20px;
  border: 1px solid var(--slate-300);
  border-radius: 50%;
}

.payment-option:has(input:checked) .payment-radio {
  border: 6px solid var(--emerald-500);
}

.payment-icon {
  display: inline-flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: var(--navy-900);
  color: var(--white);
  font-weight: 900;
}

.payment-option strong,
.payment-option small {
  display: block;
}

.payment-option small {
  color: var(--slate-500);
}

.payment-form > .button {
  margin-top: 18px;
}

.order-summary-card h2 {
  margin-bottom: 20px;
}

.order-summary-card dl,
.verification-details,
.signature-panel dl {
  margin: 0;
}

.order-summary-card dl > div,
.verification-details > div,
.signature-panel dl > div {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  padding: 12px 0;
  border-bottom: 1px solid var(--slate-200);
}

.order-summary-card dt,
.verification-details dt,
.signature-panel dt {
  color: var(--slate-500);
  font-size: 0.78rem;
}

.order-summary-card dd,
.verification-details dd,
.signature-panel dd {
  margin: 0;
  font-weight: 750;
  text-align: end;
}

.summary-total {
  margin-top: 8px;
  font-size: 1.12rem;
}

.summary-total dd {
  color: var(--emerald-700);
}

.bank-details {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 5px;
  padding: 15px;
  border-radius: 10px;
  margin-top: 18px;
  background: var(--slate-50);
}

.success-mark,
.verify-mark {
  display: inline-flex;
  width: 86px;
  height: 86px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--emerald-500);
  color: var(--white);
  box-shadow: 0 0 0 13px var(--emerald-100);
  font-size: 2rem;
  font-weight: 900;
}

.success-mark.small {
  width: 58px;
  height: 58px;
  box-shadow: 0 0 0 8px var(--emerald-100);
  font-size: 1.3rem;
}

.success-summary {
  display: grid;
  max-width: 760px;
  margin: 36px auto;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.success-summary div {
  padding: 20px;
}

.success-summary div:not(:last-child) {
  border-inline-end: 1px solid var(--slate-200);
}

.success-summary span,
.success-summary strong {
  display: block;
}

.success-summary span {
  color: var(--slate-500);
  font-size: 0.75rem;
}

.next-steps {
  max-width: 760px;
  padding: 28px;
  border-radius: var(--radius);
  margin: 0 auto 30px;
  background: var(--navy-900);
  color: var(--white);
  text-align: start;
}

.next-steps ol {
  display: grid;
  padding: 0;
  gap: 10px;
  list-style: none;
}

.next-steps li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--slate-300);
}

.next-steps li span {
  display: inline-flex;
  width: 25px;
  height: 25px;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--emerald-500);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 900;
}

.agreement-hero {
  padding: 65px 0;
}

.agreement-hero-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 35px;
}

.agreement-hero h1 {
  margin-bottom: 10px;
  font-size: clamp(2.2rem, 4vw, 3.6rem);
}

.agreement-hero p {
  margin: 0;
}

.agreement-meta-card {
  min-width: 290px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
}

.agreement-meta-card span,
.agreement-meta-card strong,
.agreement-meta-card small {
  display: block;
}

.agreement-meta-card span,
.agreement-meta-card small {
  color: var(--slate-300);
  font-size: 0.74rem;
}

.agreement-meta-card strong {
  margin: 6px 0;
  font-size: 1.2rem;
}

.agreement-section {
  background: #eef2f7;
}

.agreement-layout {
  display: grid;
  align-items: start;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 28px;
}

.contract-paper {
  width: 100%;
  max-width: 900px;
  min-height: 1100px;
  padding: 58px;
  border: 1px solid var(--slate-200);
  margin-inline: auto;
  background: var(--white);
  box-shadow: 0 25px 65px rgba(15, 23, 42, 0.12);
  color: #1e293b;
}

.contract-paper > h1 {
  margin: 28px 0 16px;
  color: var(--navy-900);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
  line-height: 1.25;
  text-align: center;
}

html[dir="rtl"] .contract-paper > h1 {
  font-family: Tahoma, Arial, sans-serif;
}

.contract-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--emerald-500);
}

.contract-header img {
  width: 165px;
}

.contract-header div {
  color: var(--slate-500);
  font-size: 0.72rem;
  text-align: end;
}

.contract-header div span {
  display: block;
}

.variant-strip {
  padding: 13px 16px;
  border-inline-start: 4px solid var(--emerald-500);
  margin-bottom: 24px;
  background: var(--slate-50);
  color: var(--slate-600);
  font-size: 0.78rem;
}

.party-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin: 24px 0 32px;
}

.party-grid section {
  padding: 18px;
  border: 1px solid var(--slate-200);
  border-radius: 12px;
  background: var(--slate-50);
}

.party-grid h2 {
  margin: 8px 0;
  font-size: 1rem;
}

.party-grid p {
  margin: 0;
  font-size: 0.78rem;
}

.contract-label {
  color: var(--emerald-700);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.contract-clause {
  margin-bottom: 22px;
}

.contract-clause h2,
.contract-annex h2,
.signature-evidence h2 {
  margin-bottom: 8px;
  color: var(--navy-900);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.1rem;
}

html[dir="rtl"] .contract-clause h2,
html[dir="rtl"] .contract-annex h2,
html[dir="rtl"] .signature-evidence h2 {
  font-family: Tahoma, Arial, sans-serif;
}

.contract-clause p {
  margin: 0;
  color: #334155;
  font-size: 0.83rem;
  line-height: 1.75;
  text-align: justify;
}

.contract-annex {
  padding-top: 28px;
  border-top: 2px solid var(--navy-900);
  margin-top: 38px;
}

.contract-details {
  margin: 0;
}

.contract-details > div {
  display: grid;
  padding: 10px 0;
  border-bottom: 1px solid var(--slate-200);
  grid-template-columns: 175px 1fr;
  gap: 18px;
}

.contract-details dt {
  color: var(--slate-500);
  font-size: 0.74rem;
  font-weight: 800;
}

.contract-details dd {
  margin: 0;
  color: var(--slate-700);
  font-size: 0.8rem;
}

.tom-list {
  padding-inline-start: 22px;
  font-size: 0.8rem;
}

.tom-list li {
  padding-inline-start: 5px;
  margin-bottom: 7px;
}

.subprocessor-table-wrap {
  width: 100%;
  overflow-x: auto;
}

.contract-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.74rem;
}

.contract-table th,
.contract-table td {
  padding: 9px;
  border: 1px solid var(--slate-300);
  text-align: start;
}

.contract-table th {
  background: var(--slate-100);
}

.contract-warning {
  padding: 10px;
  margin: 12px 0 0;
  background: #fffbeb;
  color: #92400e;
  font-size: 0.7rem;
}

.sources-annex ul {
  font-size: 0.76rem;
}

.contract-footer {
  padding-top: 18px;
  border-top: 1px solid var(--slate-300);
  margin-top: 30px;
}

.contract-footer span,
.contract-footer code {
  display: block;
}

.contract-footer span {
  color: var(--slate-500);
  font-size: 0.65rem;
}

.contract-footer code,
.verification-details code,
.signature-evidence code {
  overflow-wrap: anywhere;
  color: var(--emerald-700);
  font-size: 0.68rem;
}

.signature-panel {
  position: sticky;
  top: 110px;
}

.signature-panel-inner {
  padding: 26px;
  border: 1px solid var(--slate-200);
  border-radius: 20px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.signature-panel h2 {
  margin: 18px 0;
  font-size: 1.35rem;
}

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

.signature-consents {
  margin: 0;
  padding: 14px;
}

.signed-panel {
  text-align: center;
}

.signed-panel dl {
  margin: 20px 0;
  text-align: start;
}

.signed-panel .button + .button {
  margin-top: 8px;
}

.print-toolbar {
  position: sticky;
  z-index: 20;
  top: 0;
  display: flex;
  justify-content: center;
  gap: 10px;
  padding: 12px;
  background: var(--navy-900);
}

.contract-paper-print {
  margin-block: 40px;
}

.signature-evidence {
  padding: 18px;
  border: 2px solid var(--emerald-500);
  margin-top: 32px;
}

.verify-card {
  padding: 46px;
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow);
}

.verify-card.is-pending .verify-mark {
  background: var(--gold-500);
  box-shadow: 0 0 0 13px #fef3c7;
}

.verification-details {
  margin: 28px 0;
  text-align: start;
}

.verify-code {
  display: inline-flex;
  padding: 12px;
  border-radius: 8px;
  margin: 15px 0 25px;
  background: var(--slate-100);
}

.status-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 5px 9px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 800;
  white-space: nowrap;
}

.status-success {
  background: var(--emerald-100);
  color: var(--success-strong);
}

.status-warning {
  background: #fef3c7;
  color: #92400e;
}

.status-danger {
  background: var(--red-100);
  color: var(--danger-strong);
}

.status-info {
  background: var(--blue-100);
  color: #1e40af;
}

.status-neutral {
  background: #e5e7eb;
  color: var(--neutral-strong);
}

.auth-card {
  width: min(calc(100% - 32px), 470px);
  padding: 40px;
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg);
  margin: auto;
  background: var(--white);
  box-shadow: var(--shadow);
  text-align: start;
}

.auth-card .brand {
  align-items: flex-start;
  margin-bottom: 30px;
}

.auth-card h1 {
  margin-bottom: 10px;
  font-size: 2rem;
}

.auth-card form {
  display: grid;
  gap: 16px;
  margin-top: 26px;
}

.portal-header {
  padding: 60px 0;
}

.portal-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
}

.portal-header h1 {
  margin: 0;
  font-size: 2.5rem;
}

.portal-orders {
  display: grid;
  gap: 16px;
  margin-top: 25px;
}

.portal-order-card {
  padding: 25px;
  border: 1px solid var(--slate-200);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.portal-order-card header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 17px;
  border-bottom: 1px solid var(--slate-200);
}

.portal-order-card header span:first-child {
  color: var(--emerald-700);
  font-size: 0.72rem;
  font-weight: 900;
}

.portal-order-card h3 {
  margin: 5px 0 0;
}

.portal-order-card dl {
  display: grid;
  margin: 20px 0;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
}

.portal-order-card dt,
.portal-order-card dd {
  margin: 0;
}

.portal-order-card dt {
  color: var(--slate-500);
  font-size: 0.72rem;
}

.portal-order-card dd {
  font-weight: 700;
}

.portal-order-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.empty-state {
  padding: 30px;
  border: 1px dashed var(--slate-300);
  border-radius: var(--radius);
  background: var(--slate-50);
  text-align: center;
}

.legal-page {
  padding: 90px 0;
  background: var(--slate-50);
}

.legal-content {
  max-width: 900px;
  padding: 55px;
  border: 1px solid var(--slate-200);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.legal-content > h1 {
  margin-bottom: 18px;
  font-size: clamp(2.3rem, 5vw, 4rem);
}

.legal-intro {
  padding-bottom: 25px;
  border-bottom: 1px solid var(--slate-200);
  margin-bottom: 28px;
  font-size: 1.08rem;
}

.legal-content > section {
  display: grid;
  grid-template-columns: 45px 1fr;
  gap: 15px;
  margin-bottom: 18px;
}

.legal-content > section h2 {
  color: var(--emerald-700);
  font-size: 1rem;
}

.imprint-details {
  margin: 30px 0;
}

.imprint-details > div {
  display: grid;
  padding: 12px 0;
  border-bottom: 1px solid var(--slate-200);
  grid-template-columns: 180px 1fr;
}

.imprint-details dt {
  color: var(--slate-500);
}

.imprint-details dd {
  margin: 0;
  font-weight: 700;
}

@media (max-width: 1180px) {
  .header-inner {
    gap: 15px;
  }
  .main-nav {
    gap: 0;
  }
  .nav-link {
    padding-inline: 8px;
    font-size: 0.82rem;
  }
  .header-portal {
    display: none;
  }
  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .support-steps {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 980px) {
  .announcement-inner {
    justify-content: flex-start;
    overflow-x: auto;
    white-space: nowrap;
  }
  .header-inner {
    grid-template-columns: auto auto 1fr;
  }
  .menu-toggle {
    display: flex;
    order: 2;
  }
  .brand {
    order: 1;
  }
  .main-nav {
    position: fixed;
    visibility: hidden;
    z-index: 75;
    inset: 116px 20px auto;
    display: flex;
    max-height: calc(100vh - 138px);
    align-items: stretch;
    justify-content: flex-start;
    flex-direction: column;
    gap: 3px;
    padding: 15px;
    border: 1px solid var(--slate-200);
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: var(--shadow);
    opacity: 0;
    overflow-y: auto;
    transform: translateY(-10px);
    transition:
      opacity var(--transition),
      transform var(--transition),
      visibility var(--transition);
  }
  .main-nav.is-open {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
  }
  .nav-link {
    width: 100%;
    justify-content: space-between;
    font-size: 0.94rem;
  }
  .nav-mega {
    position: static;
    display: none;
    visibility: visible;
    width: 100%;
    padding: 5px;
    border: 0;
    box-shadow: none;
    opacity: 1;
    transform: none;
  }
  .nav-dropdown.is-open > .nav-mega {
    display: block;
  }
  .nav-mega a {
    padding: 10px 12px;
  }
  .header-actions {
    order: 3;
    justify-self: end;
  }
  .hero-grid,
  .page-hero-grid,
  .industry-hero-grid,
  .platform-grid,
  .company-layout {
    grid-template-columns: 1fr;
  }
  .hero-grid {
    padding-block: 70px 130px;
  }
  .hero-copy {
    max-width: 760px;
  }
  .hero-visual {
    width: min(100%, 560px);
    margin: 0 auto;
  }
  .page-hero-grid img,
  .industry-hero img {
    max-width: 560px;
    margin: 0 auto;
  }
  .domain-card {
    grid-template-columns: 1fr;
  }
  .domain-result {
    grid-column: auto;
    margin: -8px 0 0;
  }
  .services-grid,
  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .platform-grid {
    gap: 45px;
  }
  .pricing-grid {
    grid-template-columns: 1fr;
  }
  .pricing-card,
  .pricing-card.is-recommended {
    max-width: 650px;
    width: 100%;
    margin: 0 auto;
    transform: none;
  }
  .pricing-heading {
    min-height: auto;
  }
  .faq-layout {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .footer-grid {
    grid-template-columns: 1.2fr 1fr 1fr;
  }
  .footer-grid > div:last-child {
    grid-column: 1 / -1;
  }
  .order-layout,
  .agreement-layout,
  .payment-layout {
    grid-template-columns: 1fr;
  }
  .order-aside,
  .signature-panel {
    position: static;
  }
  .order-aside {
    display: grid;
    grid-template-columns: 1fr;
  }
  .package-selector {
    grid-template-columns: 1fr;
  }
  .package-option {
    min-height: auto;
  }
  .package-option small {
    min-height: auto;
  }
  .agreement-layout {
    max-width: 900px;
  }
  .signature-panel {
    order: -1;
  }
  .portal-order-card dl {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 720px) {
  .container {
    width: min(calc(100% - 28px), var(--container));
  }
  .section {
    padding: 68px 0;
  }
  .section-heading h2 {
    font-size: 2.1rem;
  }
  .split-heading,
  .industry-grid,
  .two-column-info,
  .security-layers,
  .dpa-variants,
  .evidence-panel,
  .contact-panel,
  .success-summary {
    grid-template-columns: 1fr;
  }
  .announcement a {
    display: none;
  }
  .header-inner {
    min-height: 70px;
    grid-template-columns: auto auto 1fr;
  }
  .brand img {
    width: 145px;
  }
  .brand span,
  .header-order {
    display: none;
  }
  .main-nav {
    inset-block-start: 106px;
  }
  .hero,
  .hero-grid {
    min-height: auto;
  }
  .hero-grid {
    gap: 45px;
    padding-block: 60px 120px;
  }
  .hero-copy h1 {
    font-size: 2.65rem;
  }
  .hero-actions .button {
    width: 100%;
  }
  .hero-points {
    display: grid;
  }
  .floating-card-top {
    inset-inline-start: 10px;
  }
  .floating-card-bottom {
    inset-inline-end: 10px;
  }
  .domain-card {
    padding: 22px;
  }
  .domain-form {
    flex-direction: column;
  }
  .trust-grid,
  .services-grid,
  .feature-grid,
  .industry-feature-list,
  .support-steps {
    grid-template-columns: 1fr;
  }
  .industry-visual {
    height: 210px;
  }
  .process-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .process-grid::before {
    top: 20px;
    bottom: 20px;
    left: 26px;
    width: 2px;
    height: auto;
    background: linear-gradient(var(--emerald-500), var(--gold-500));
  }
  html[dir="rtl"] .process-grid::before {
    right: 26px;
    left: auto;
  }
  .process-grid li {
    align-items: center;
    flex-direction: row;
    padding: 0;
    text-align: start;
  }
  .process-grid li > span {
    flex: 0 0 auto;
  }
  .center-actions .button {
    width: 100%;
  }
  .cta-band-inner,
  .footer-bottom,
  .agreement-hero-inner,
  .portal-header .container {
    align-items: stretch;
    flex-direction: column;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 35px;
  }
  .footer-brand {
    grid-column: 1 / -1;
  }
  .footer-grid > div:last-child {
    grid-column: auto;
  }
  .page-hero,
  .order-hero {
    padding: 75px 0 65px;
  }
  .page-hero h1,
  .order-hero h1 {
    font-size: 2.55rem;
  }
  .page-hero-grid,
  .industry-hero-grid {
    gap: 35px;
  }
  .choice-grid,
  .choice-grid-three,
  .checkbox-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }
  .field-wide {
    grid-column: auto;
  }
  .form-step {
    padding: 22px;
  }
  .order-progress li {
    font-size: 0;
  }
  .order-progress li span {
    font-size: 0.78rem;
  }
  .payment-form,
  .order-summary-card {
    padding: 20px;
  }
  .success-summary div:not(:last-child) {
    border-inline-end: 0;
    border-bottom: 1px solid var(--slate-200);
  }
  .agreement-meta-card {
    min-width: 0;
  }
  .contract-paper {
    min-height: 0;
    padding: 28px 22px;
  }
  .contract-paper > h1 {
    font-size: 1.5rem;
  }
  .contract-header,
  .party-grid {
    align-items: flex-start;
    grid-template-columns: 1fr;
  }
  .contract-header {
    flex-direction: column;
  }
  .contract-header div {
    text-align: start;
  }
  .contract-details > div {
    grid-template-columns: 1fr;
    gap: 3px;
  }
  .portal-order-card dl {
    grid-template-columns: 1fr;
  }
  .legal-content {
    padding: 28px 20px;
  }
  .imprint-details > div {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .header-actions {
    gap: 3px;
  }
  .language-button {
    min-width: 46px;
  }
  .hero-copy h1 {
    font-size: 2.25rem;
  }
  .floating-card {
    padding: 10px;
  }
  .floating-card small {
    display: none;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid > div:last-child {
    grid-column: auto;
  }
  .form-navigation {
    align-items: stretch;
    flex-direction: column-reverse;
  }
  .form-navigation .button {
    width: 100%;
  }
  .verify-card,
  .auth-card {
    padding: 28px 20px;
  }
}

@media print {
  .announcement,
  .site-header,
  .site-footer,
  .flash-stack,
  .back-to-top,
  .print-toolbar,
  .signature-panel {
    display: none !important;
  }
  body,
  .agreement-section {
    background: #fff !important;
  }
  .section,
  .agreement-section {
    padding: 0 !important;
  }
  .agreement-layout,
  .container {
    display: block !important;
    width: 100% !important;
    max-width: none !important;
  }
  .contract-paper {
    width: 100% !important;
    max-width: none !important;
    padding: 0 !important;
    border: 0 !important;
    box-shadow: none !important;
  }
  .contract-clause,
  .party-grid,
  .contract-details > div {
    break-inside: avoid;
  }
  @page {
    size: A4;
    margin: 14mm;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ========================================================================== 
   ClearlyHost 2026.08.10 public experience
   Premium homepage, live domain search and Kopfblatt-inspired footer.
   ========================================================================== */

.ch-home-hero {
  background: #eef4f3;
  min-height: 720px;
  overflow: hidden;
  position: relative;
}

.ch-home-hero-media,
.ch-home-hero-media img,
.ch-home-hero-shade {
  inset: 0;
  position: absolute;
}

.ch-home-hero-media img {
  height: 100%;
  object-fit: cover;
  object-position: center;
  width: 100%;
}

.ch-home-hero-shade {
  background: linear-gradient(
    90deg,
    rgba(4, 20, 45, 0.04) 34%,
    rgba(249, 251, 249, 0.46) 58%,
    #f8faf8 88%
  );
}

html[dir="rtl"] .ch-home-hero-shade {
  background: linear-gradient(
    270deg,
    rgba(4, 20, 45, 0.04) 34%,
    rgba(249, 251, 249, 0.46) 58%,
    #f8faf8 88%
  );
}

.ch-home-hero-inner {
  align-items: center;
  display: flex;
  justify-content: flex-end;
  min-height: 720px;
  padding-block: 80px;
  position: relative;
  z-index: 2;
}

.ch-home-hero-copy {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 28px;
  box-shadow: 0 30px 90px rgba(15, 23, 42, 0.16);
  max-width: 650px;
  padding: clamp(30px, 4vw, 54px);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
}

.ch-home-hero-copy .eyebrow {
  color: var(--emerald-700);
}

.ch-home-hero-copy h1 {
  color: #071b3c;
  font-size: clamp(2.65rem, 5vw, 4.85rem);
  margin-bottom: 22px;
}

.ch-home-hero-copy > p:not(.ch-hero-note) {
  color: #42526a;
  font-size: 1.12rem;
  line-height: 1.75;
  margin-bottom: 28px;
}

.ch-hero-proof {
  border-block: 1px solid #dce5e8;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  list-style: none;
  margin: 30px 0 20px;
  padding: 18px 0;
}

.ch-hero-proof li {
  border-inline-end: 1px solid #dce5e8;
  padding-inline: 13px;
}

.ch-hero-proof li:first-child {
  padding-inline-start: 0;
}

.ch-hero-proof li:last-child {
  border: 0;
  padding-inline-end: 0;
}

.ch-hero-proof strong,
.ch-hero-proof span {
  display: block;
}

.ch-hero-proof strong {
  color: #073a88;
  font-size: 0.96rem;
}

.ch-hero-proof span {
  color: var(--slate-500);
  font-size: 0.72rem;
  margin-top: 2px;
}

.ch-hero-note {
  align-items: center;
  color: #37536f;
  display: flex;
  font-size: 0.8rem;
  font-weight: 700;
  gap: 8px;
  margin: 0;
}

.ch-hero-note span {
  align-items: center;
  background: var(--emerald-600);
  border-radius: 50%;
  color: #fff;
  display: inline-flex;
  height: 20px;
  justify-content: center;
  width: 20px;
}

.ch-domain-section {
  background: #f5f8fb;
  padding: 58px 0 86px;
}

.ch-domain-shell {
  background: #fff;
  border: 1px solid #dce6ef;
  border-radius: 28px;
  box-shadow: 0 26px 72px rgba(15, 23, 42, 0.12);
  display: grid;
  gap: 48px;
  grid-template-columns: 0.82fr 1.25fr;
  margin-top: -112px;
  padding: clamp(28px, 4vw, 48px);
  position: relative;
  z-index: 5;
}

.ch-domain-intro h2 {
  color: #071b3c;
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  margin-bottom: 15px;
}

.ch-domain-intro p {
  margin-bottom: 12px;
}

.ch-domain-form label {
  color: #243451;
  display: block;
  font-size: 0.78rem;
  font-weight: 800;
  margin-bottom: 9px;
}

.ch-domain-input-row {
  align-items: center;
  background: #f7fafc;
  border: 2px solid #cad8e5;
  border-radius: 15px;
  display: grid;
  grid-template-columns: auto minmax(120px, 1fr) auto auto;
  overflow: hidden;
  transition:
    border-color var(--transition),
    box-shadow var(--transition);
}

.ch-domain-input-row:focus-within {
  border-color: var(--emerald-500);
  box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.12);
}

.ch-domain-input-row > span {
  color: #718096;
  font-weight: 700;
  padding-inline-start: 16px;
}

.ch-domain-input-row input,
.ch-domain-input-row select {
  background: transparent;
  border: 0;
  min-height: 58px;
  outline: 0;
}

.ch-domain-input-row input {
  min-width: 0;
  padding: 0 8px;
}

.ch-domain-input-row select {
  border-inline: 1px solid #d7e1e9;
  font-weight: 800;
  padding: 0 13px;
}

.ch-domain-input-row .button {
  align-self: stretch;
  border-radius: 0;
  white-space: nowrap;
}

.ch-domain-result {
  align-items: flex-start;
  background: #f7fafc;
  border-inline-start: 4px solid #94a3b8;
  border-radius: 11px;
  display: flex;
  flex-direction: column;
  margin-top: 16px;
  padding: 13px 15px;
}

.ch-domain-result strong {
  color: #152945;
  direction: ltr;
}

.ch-domain-result span {
  color: var(--slate-500);
  font-size: 0.8rem;
}

.ch-domain-result.is-checking {
  border-color: var(--gold-500);
}
.ch-domain-result.is-available {
  background: #eefbf3;
  border-color: var(--emerald-600);
}
.ch-domain-result.is-available strong {
  color: #0c7241;
}
.ch-domain-result.is-taken,
.ch-domain-result.is-invalid {
  background: #fff4f4;
  border-color: var(--red-600);
}
.ch-domain-result.is-taken strong,
.ch-domain-result.is-invalid strong {
  color: #a42626;
}

.ch-domain-suggestions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 13px;
}

.ch-domain-suggestions > strong {
  color: var(--slate-600);
  flex-basis: 100%;
  font-size: 0.75rem;
}

.ch-domain-suggestions button {
  background: #fff;
  border: 1px solid #cbd9e6;
  border-radius: 999px;
  color: #12305a;
  font-size: 0.78rem;
  font-weight: 750;
  padding: 8px 12px;
}

.ch-domain-suggestions button:hover {
  border-color: var(--emerald-500);
  color: var(--emerald-700);
}

.ch-domain-continue {
  margin-top: 15px;
}

.ch-trust-section {
  padding-top: 92px;
}

.ch-trust-section .trust-card {
  background: #fff;
  border: 1px solid #e0e8f0;
  box-shadow: 0 14px 36px rgba(15, 23, 42, 0.06);
}

.ch-story-grid {
  align-items: center;
  display: grid;
  gap: clamp(38px, 6vw, 78px);
  grid-template-columns: 1.1fr 0.9fr;
}

.ch-story-media {
  border-radius: 28px;
  box-shadow: var(--shadow);
  min-height: 520px;
  overflow: hidden;
  position: relative;
}

.ch-story-media > img {
  height: 100%;
  inset: 0;
  object-fit: cover;
  position: absolute;
  width: 100%;
}

.ch-story-badge {
  backdrop-filter: blur(12px);
  background: rgba(5, 32, 68, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 16px;
  bottom: 22px;
  color: #fff;
  inset-inline-start: 22px;
  max-width: 320px;
  padding: 18px 21px;
  position: absolute;
}

.ch-story-badge strong,
.ch-story-badge span {
  display: block;
}

.ch-story-badge span {
  color: #c7d9ef;
  font-size: 0.82rem;
  margin-top: 4px;
}

.ch-story-copy h2 {
  font-size: clamp(2.1rem, 4vw, 3.7rem);
}

.ch-story-copy > p {
  font-size: 1.06rem;
}

.ch-feature-stack {
  display: grid;
  gap: 10px;
  margin: 25px 0 30px;
}

.ch-feature-stack article {
  align-items: flex-start;
  border-bottom: 1px solid #e2e8f0;
  display: flex;
  gap: 15px;
  padding: 13px 0;
}

.ch-feature-stack article:last-child {
  border: 0;
}

.ch-feature-stack h3 {
  font-size: 1rem;
  margin-bottom: 4px;
}

.ch-feature-stack p {
  font-size: 0.86rem;
  margin: 0;
}

.ch-feature-stack .feature-icon {
  flex: 0 0 43px;
  height: 43px;
  width: 43px;
}

.ch-industries-section {
  background: linear-gradient(180deg, #f7fbff, #fff);
}

.ch-infrastructure-section {
  background: #051b3d;
  min-height: 650px;
  overflow: hidden;
  position: relative;
}

.ch-infrastructure-media,
.ch-infrastructure-overlay {
  height: 100%;
  inset: 0;
  position: absolute;
  width: 100%;
}

.ch-infrastructure-media {
  object-fit: cover;
}

.ch-infrastructure-overlay {
  background: linear-gradient(
    90deg,
    rgba(2, 16, 42, 0.98) 0%,
    rgba(4, 25, 58, 0.88) 38%,
    rgba(4, 25, 58, 0.1) 73%
  );
}

html[dir="rtl"] .ch-infrastructure-overlay {
  background: linear-gradient(
    270deg,
    rgba(2, 16, 42, 0.98) 0%,
    rgba(4, 25, 58, 0.88) 38%,
    rgba(4, 25, 58, 0.1) 73%
  );
}

.ch-infrastructure-inner {
  align-items: center;
  display: flex;
  min-height: 650px;
  position: relative;
  z-index: 2;
}

.ch-infrastructure-copy {
  max-width: 590px;
  padding-block: 76px;
}

.ch-infrastructure-copy h2 {
  color: #fff;
  font-size: clamp(2.2rem, 4vw, 3.8rem);
}

.ch-infrastructure-copy p,
.ch-light-list li {
  color: #c8d8eb;
}

.ch-light-list {
  margin: 27px 0 31px;
}

.ch-team-cta {
  min-height: 530px;
  overflow: hidden;
  position: relative;
}

.ch-team-cta > img,
.ch-team-cta-overlay {
  height: 100%;
  inset: 0;
  position: absolute;
  width: 100%;
}

.ch-team-cta > img {
  object-fit: cover;
}

.ch-team-cta-overlay {
  background: linear-gradient(
    90deg,
    rgba(3, 24, 55, 0.94) 0%,
    rgba(3, 24, 55, 0.77) 48%,
    rgba(3, 24, 55, 0.16) 78%
  );
}

html[dir="rtl"] .ch-team-cta-overlay {
  background: linear-gradient(
    270deg,
    rgba(3, 24, 55, 0.94) 0%,
    rgba(3, 24, 55, 0.77) 48%,
    rgba(3, 24, 55, 0.16) 78%
  );
}

.ch-team-cta-copy {
  color: #fff;
  padding-block: 95px;
  position: relative;
  z-index: 2;
}

.ch-team-cta-copy h2 {
  font-size: clamp(2.25rem, 4vw, 4rem);
  max-width: 700px;
}

.ch-team-cta-copy p {
  color: #d5e3f3;
  font-size: 1.06rem;
  max-width: 620px;
}

.ch-team-cta-copy > div {
  display: flex;
  flex-wrap: wrap;
  gap: 11px;
  margin-top: 28px;
}

/* Kopfblatt footer: navy base, green/gold curves, contact line and legal IDs. */
.site-footer.ch-kopfblatt-footer {
  background: linear-gradient(145deg, #042461 0%, #073b86 55%, #021844 100%);
  margin-top: 0;
  padding: 98px 0 0;
  position: relative;
}

.ch-footer-wave {
  height: 88px;
  inset: -68px 0 auto;
  overflow: hidden;
  position: absolute;
}

.ch-footer-wave::before,
.ch-footer-wave i,
.ch-footer-wave b {
  border-radius: 50% 50% 0 0 / 100% 100% 0 0;
  content: "";
  height: 130px;
  inset-inline-start: -5%;
  position: absolute;
  transform: rotate(1.5deg);
  width: 110%;
}

.ch-footer-wave::before {
  background: #f5c34d;
  top: 30px;
}
.ch-footer-wave i {
  background: #27a843;
  top: 36px;
}
.ch-footer-wave b {
  background: #073779;
  top: 44px;
}

.ch-kopfblatt-footer::after {
  background-image: radial-gradient(
    rgba(77, 169, 255, 0.52) 1.2px,
    transparent 1.2px
  );
  background-size: 9px 9px;
  content: "";
  height: 210px;
  opacity: 0.32;
  pointer-events: none;
  position: absolute;
  right: 0;
  top: 24px;
  width: 250px;
}

.ch-footer-cta {
  align-items: center;
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.2);
  color: #071b3c;
  display: flex;
  gap: 32px;
  justify-content: space-between;
  margin-bottom: 42px;
  padding: 30px 36px;
  position: relative;
  z-index: 2;
}

.ch-footer-cta > div:first-child {
  max-width: 770px;
}

.ch-footer-cta > div:last-child {
  display: flex;
  flex: 0 0 auto;
  gap: 9px;
}

.ch-footer-cta > div:first-child > span {
  color: var(--emerald-700);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.ch-footer-cta h2 {
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  margin: 6px 0 6px;
}

.ch-footer-cta p {
  margin: 0;
}

.ch-footer-contact-row {
  border-bottom: 1px solid rgba(255, 255, 255, 0.19);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-bottom: 43px;
  padding-bottom: 34px;
  position: relative;
  z-index: 2;
}

.ch-footer-contact-row > a {
  align-items: center;
  border-inline-end: 1px solid rgba(255, 255, 255, 0.22);
  color: #fff;
  display: flex;
  gap: 14px;
  justify-content: center;
  min-width: 0;
  padding: 3px 20px;
}

.ch-footer-contact-row > a:last-child {
  border: 0;
}

.ch-contact-icon {
  align-items: center;
  border: 2px solid #37d45a;
  border-radius: 50%;
  display: inline-flex;
  flex: 0 0 52px;
  height: 52px;
  justify-content: center;
}

.ch-contact-icon svg {
  fill: none;
  height: 25px;
  stroke: #fff;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
  width: 25px;
}

.ch-footer-contact-row small,
.ch-footer-contact-row strong {
  display: block;
  overflow-wrap: anywhere;
}

.ch-footer-contact-row small {
  color: #9ac4f4;
  font-size: 0.64rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.ch-footer-contact-row strong {
  color: #fff;
  font-size: 0.9rem;
  margin-top: 2px;
}

.ch-kopfblatt-footer .ch-footer-grid {
  padding-bottom: 34px;
  position: relative;
  z-index: 2;
}

.ch-kopfblatt-footer .footer-brand img {
  filter: none;
}

.ch-footer-logo {
  background: #fff;
  border-radius: 13px;
  display: inline-flex;
  padding: 8px 13px;
}

.ch-kopfblatt-footer .footer-brand > strong {
  color: #fff;
  display: block;
  margin-top: 16px;
}

.ch-kopfblatt-footer .footer-brand p,
.ch-kopfblatt-footer .footer-grid a,
.ch-kopfblatt-footer .footer-grid span {
  color: #c4d8f1;
}

.ch-footer-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.ch-footer-badges span {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  color: #fff !important;
  font-size: 0.69rem !important;
  font-weight: 800;
  padding: 6px 9px;
}

.ch-company-identifiers {
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  color: #fff;
  display: flex;
  flex-wrap: wrap;
  font-size: 0.8rem;
  font-weight: 750;
  gap: 17px;
  justify-content: center;
  padding: 24px 0 20px;
  position: relative;
  z-index: 2;
}

.ch-company-identifiers i {
  background: rgba(255, 255, 255, 0.34);
  height: 18px;
  width: 1px;
}

.ch-kopfblatt-footer .footer-bottom {
  color: #a9c3e6;
  position: relative;
  z-index: 2;
}

@media (max-width: 980px) {
  .ch-home-hero,
  .ch-home-hero-inner {
    min-height: 670px;
  }
  .ch-home-hero-shade {
    background: linear-gradient(
      0deg,
      #f8faf8 5%,
      rgba(248, 250, 248, 0.88) 50%,
      rgba(248, 250, 248, 0.12) 100%
    );
  }
  html[dir="rtl"] .ch-home-hero-shade {
    background: linear-gradient(
      0deg,
      #f8faf8 5%,
      rgba(248, 250, 248, 0.88) 50%,
      rgba(248, 250, 248, 0.12) 100%
    );
  }
  .ch-home-hero-inner {
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 90px;
  }
  .ch-home-hero-copy {
    max-width: 760px;
  }
  .ch-domain-shell {
    gap: 28px;
    grid-template-columns: 1fr;
    margin-top: -65px;
  }
  .ch-story-grid {
    grid-template-columns: 1fr;
  }
  .ch-story-media {
    min-height: 480px;
  }
  .ch-footer-cta {
    align-items: flex-start;
    flex-direction: column;
  }
  .ch-footer-contact-row {
    grid-template-columns: 1fr;
  }
  .ch-footer-contact-row > a {
    border: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
    justify-content: flex-start;
    padding: 14px 0;
  }
}

@media (max-width: 680px) {
  .ch-home-hero {
    min-height: 740px;
  }
  .ch-home-hero-inner {
    min-height: 740px;
    padding: 175px 0 54px;
  }
  .ch-home-hero-media img {
    object-position: 35% center;
  }
  .ch-home-hero-copy {
    border-radius: 20px;
    padding: 25px 20px;
  }
  .ch-home-hero-copy h1 {
    font-size: 2.35rem;
  }
  .ch-hero-proof {
    grid-template-columns: 1fr;
  }
  .ch-hero-proof li {
    border: 0;
    border-bottom: 1px solid #dce5e8;
    padding: 9px 0;
  }
  .ch-hero-proof li:last-child {
    border: 0;
  }
  .ch-domain-section {
    padding-bottom: 65px;
  }
  .ch-domain-shell {
    border-radius: 20px;
    padding: 22px 17px;
  }
  .ch-domain-input-row {
    grid-template-columns: auto minmax(90px, 1fr) auto;
  }
  .ch-domain-input-row .button {
    grid-column: 1 / -1;
    min-height: 49px;
  }
  .ch-story-media {
    min-height: 350px;
  }
  .ch-story-badge {
    bottom: 12px;
    inset-inline: 12px;
    max-width: none;
  }
  .ch-infrastructure-section,
  .ch-infrastructure-inner {
    min-height: 630px;
  }
  .ch-infrastructure-overlay,
  html[dir="rtl"] .ch-infrastructure-overlay {
    background: linear-gradient(
      0deg,
      rgba(2, 16, 42, 0.98),
      rgba(4, 25, 58, 0.83) 67%,
      rgba(4, 25, 58, 0.28)
    );
  }
  .ch-infrastructure-inner {
    align-items: flex-end;
  }
  .ch-team-cta {
    min-height: 590px;
  }
  .ch-team-cta-overlay,
  html[dir="rtl"] .ch-team-cta-overlay {
    background: linear-gradient(
      0deg,
      rgba(3, 24, 55, 0.98),
      rgba(3, 24, 55, 0.76) 70%,
      rgba(3, 24, 55, 0.14)
    );
  }
  .ch-team-cta-copy {
    padding: 210px 0 60px;
  }
  .ch-team-cta-copy > div,
  .ch-footer-cta > div:last-child {
    align-items: stretch;
    flex-direction: column;
    width: 100%;
  }
  .ch-team-cta-copy .button,
  .ch-footer-cta .button {
    width: 100%;
  }
  .site-footer.ch-kopfblatt-footer {
    padding-top: 78px;
  }
  .ch-footer-cta {
    padding: 24px 20px;
  }
  .ch-company-identifiers {
    align-items: stretch;
    flex-direction: column;
    gap: 6px;
    text-align: center;
  }
  .ch-company-identifiers i {
    display: none;
  }
}

/* ClearlyHost 2026.08.10 — customer portal workspace */
.ch-portal-header {
  background:
    radial-gradient(circle at 80% 0, rgba(31, 183, 104, 0.19), transparent 29%),
    linear-gradient(120deg, #04152f, #0a3674);
  color: #fff;
  padding: 52px 0 78px;
}

.ch-portal-header-inner {
  align-items: center;
  display: flex;
  gap: 28px;
  justify-content: space-between;
}
.ch-portal-header h1 {
  color: #fff;
  font-size: clamp(2rem, 4vw, 3.5rem);
  margin: 8px 0;
}
.ch-portal-header p {
  color: #c3d6eb;
  margin: 0;
}
.ch-portal-header-actions {
  align-items: center;
  display: flex;
  gap: 15px;
}
.ch-secure-session {
  align-items: center;
  color: #d8e9f8;
  display: flex;
  font-size: 0.8rem;
  font-weight: 750;
  gap: 7px;
}
.ch-secure-session i {
  align-items: center;
  background: #16a05b;
  border-radius: 50%;
  color: #fff;
  display: flex;
  font-style: normal;
  height: 24px;
  justify-content: center;
  width: 24px;
}

.ch-portal-page {
  background: #f2f6f8;
  min-height: 750px;
  padding: 0 0 85px;
}
.ch-portal-shell {
  align-items: start;
  display: grid;
  gap: 28px;
  grid-template-columns: 255px minmax(0, 1fr);
  position: relative;
  top: -38px;
}
.ch-portal-sidebar {
  background: #fff;
  border: 1px solid #dce7ea;
  border-radius: 22px;
  box-shadow: 0 16px 48px rgba(8, 35, 64, 0.1);
  overflow: hidden;
  position: sticky;
  top: 100px;
}
.ch-portal-account {
  align-items: center;
  border-bottom: 1px solid #e2e9ec;
  display: flex;
  gap: 11px;
  padding: 20px;
}
.ch-portal-account > span {
  align-items: center;
  background: linear-gradient(135deg, #139858, #0c58a1);
  border-radius: 13px;
  color: #fff;
  display: flex;
  flex: 0 0 43px;
  font-weight: 900;
  height: 43px;
  justify-content: center;
}
.ch-portal-account div {
  min-width: 0;
}
.ch-portal-account strong,
.ch-portal-account small {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.ch-portal-account strong {
  color: #12314f;
  font-size: 0.86rem;
}
.ch-portal-account small {
  color: #758699;
  font-size: 0.7rem;
  margin-top: 2px;
}
.ch-portal-sidebar nav {
  display: grid;
  gap: 3px;
  padding: 14px 10px;
}
.ch-portal-sidebar nav a {
  align-items: center;
  border-radius: 11px;
  color: #486177;
  display: flex;
  font-size: 0.82rem;
  font-weight: 750;
  gap: 11px;
  padding: 11px 12px;
}
.ch-portal-sidebar nav a:hover {
  background: #f2f7f7;
  color: #0a8047;
}
.ch-portal-sidebar nav a.is-active {
  background: #e9f8f1;
  color: #087442;
}
.ch-portal-sidebar nav a > span {
  align-items: center;
  color: #637f96;
  display: flex;
  font-size: 1rem;
  height: 24px;
  justify-content: center;
  width: 24px;
}
.ch-portal-sidebar nav a b {
  align-items: center;
  background: #cf3838;
  border-radius: 999px;
  color: #fff;
  display: flex;
  font-size: 0.62rem;
  height: 20px;
  justify-content: center;
  margin-inline-start: auto;
  min-width: 20px;
  padding: 0 5px;
}
.ch-webmail-button {
  align-items: center;
  background: #082d60;
  color: #fff;
  display: grid;
  gap: 0 10px;
  grid-template-columns: 32px 1fr auto;
  margin: 9px;
  padding: 14px;
  border-radius: 13px;
}
.ch-webmail-button > span {
  font-size: 1.2rem;
  grid-row: 1 / 3;
}
.ch-webmail-button strong,
.ch-webmail-button small {
  display: block;
}
.ch-webmail-button strong {
  color: #fff;
  font-size: 0.8rem;
}
.ch-webmail-button small {
  color: #b9cee5;
  font-size: 0.66rem;
}
.ch-webmail-button b {
  grid-column: 3;
  grid-row: 1 / 3;
}

.ch-portal-content {
  min-width: 0;
}
.ch-portal-title {
  align-items: center;
  display: flex;
  gap: 22px;
  justify-content: space-between;
  margin: 0 0 23px;
  min-height: 62px;
}
.ch-portal-title span,
.ch-portal-panel header > div > span {
  color: #11814a;
  display: block;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.ch-portal-title h2 {
  color: #102d49;
  font-size: clamp(1.65rem, 3vw, 2.35rem);
  margin: 4px 0 0;
}
.ch-portal-stats {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(4, 1fr);
  margin-bottom: 18px;
}
.ch-portal-stats article {
  align-items: center;
  background: #fff;
  border: 1px solid #dce7ea;
  border-radius: 17px;
  display: flex;
  gap: 13px;
  min-height: 98px;
  padding: 17px;
}
.ch-portal-stats article > span {
  align-items: center;
  border-radius: 13px;
  display: flex;
  flex: 0 0 45px;
  font-size: 1.05rem;
  font-weight: 900;
  height: 45px;
  justify-content: center;
}
.ch-portal-stats .is-blue {
  background: #e6f0fb;
  color: #1765ae;
}
.ch-portal-stats .is-red {
  background: #fceaea;
  color: #bd3333;
}
.ch-portal-stats .is-green {
  background: #e7f7ef;
  color: #0f8a4d;
}
.ch-portal-stats .is-gold {
  background: #fff3d7;
  color: #a6710b;
}
.ch-portal-stats small,
.ch-portal-stats strong {
  display: block;
}
.ch-portal-stats small {
  color: #6e8193;
  font-size: 0.68rem;
  font-weight: 750;
}
.ch-portal-stats strong {
  color: #102d49;
  font-size: 1.55rem;
  margin-top: 2px;
}
.ch-portal-alert {
  align-items: center;
  background: #fff3f3;
  border: 1px solid #efc2c2;
  border-radius: 16px;
  display: grid;
  gap: 2px 13px;
  grid-template-columns: 38px 1fr auto;
  margin-bottom: 18px;
  padding: 16px 18px;
}
.ch-portal-alert > span {
  align-items: center;
  background: #c83a3a;
  border-radius: 50%;
  color: #fff;
  display: flex;
  font-weight: 900;
  grid-row: 1 / 3;
  height: 34px;
  justify-content: center;
  width: 34px;
}
.ch-portal-alert strong {
  color: #9c2828;
}
.ch-portal-alert p {
  color: #7d4a4a;
  font-size: 0.8rem;
  margin: 2px 0 0;
}
.ch-portal-alert .button {
  grid-column: 3;
  grid-row: 1 / 3;
}

.ch-portal-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-bottom: 18px;
}
.ch-portal-panel {
  background: #fff;
  border: 1px solid #dce7ea;
  border-radius: 19px;
  box-shadow: 0 10px 36px rgba(8, 35, 64, 0.055);
  margin-bottom: 18px;
  padding: 22px;
}
.ch-portal-grid > .ch-portal-panel {
  margin-bottom: 0;
}
.ch-portal-panel > header {
  align-items: center;
  border-bottom: 1px solid #e4ebee;
  display: flex;
  gap: 15px;
  justify-content: space-between;
  margin-bottom: 16px;
  padding-bottom: 13px;
}
.ch-portal-panel > header h3 {
  color: #102e4b;
  font-size: 1.04rem;
  margin: 3px 0 0;
}
.ch-portal-panel > header > a {
  color: #087d46;
  font-size: 0.75rem;
  font-weight: 850;
}
.ch-service-list,
.ch-activity-list,
.ch-request-history {
  display: grid;
  gap: 2px;
}
.ch-service-list article,
.ch-activity-list article,
.ch-request-history article {
  align-items: center;
  border-bottom: 1px solid #e7edef;
  display: flex;
  gap: 11px;
  padding: 12px 0;
}
.ch-service-list article:last-child,
.ch-activity-list article:last-child,
.ch-request-history article:last-child {
  border: 0;
}
.ch-service-icon,
.ch-activity-list article > span {
  align-items: center;
  background: #eaf4fb;
  border-radius: 10px;
  color: #1664a8;
  display: flex;
  flex: 0 0 36px;
  height: 36px;
  justify-content: center;
}
.ch-service-list article > div,
.ch-activity-list article > div,
.ch-request-history article > div {
  min-width: 0;
}
.ch-service-list strong,
.ch-service-list small,
.ch-activity-list strong,
.ch-activity-list small,
.ch-request-history strong,
.ch-request-history small {
  display: block;
}
.ch-service-list strong,
.ch-activity-list strong,
.ch-request-history strong {
  color: #183650;
  font-size: 0.8rem;
}
.ch-service-list small,
.ch-activity-list small,
.ch-request-history small {
  color: #75899b;
  font-size: 0.67rem;
  margin-top: 2px;
}
.ch-service-list .status-pill,
.ch-activity-list .status-pill,
.ch-request-history .status-pill {
  margin-inline-start: auto;
}
.ch-request-history p {
  color: #5f7487;
  font-size: 0.74rem;
  margin: 6px 0 0;
}

.ch-portal-orders {
  display: grid;
  gap: 17px;
}
.ch-portal-orders .portal-order-card {
  border-radius: 19px;
  box-shadow: none;
}
.ch-bank-panel {
  background: linear-gradient(125deg, #052657, #0c4987);
  border-color: transparent;
  color: #fff;
}
.ch-bank-panel > header {
  border-color: rgba(255, 255, 255, 0.15);
}
.ch-bank-panel > header h3,
.ch-bank-panel > header > div > span {
  color: #fff;
}
.ch-bank-grid {
  display: grid;
  gap: 15px;
  grid-template-columns: repeat(3, 1fr);
}
.ch-bank-grid div {
  background: rgba(255, 255, 255, 0.09);
  border-radius: 12px;
  padding: 13px;
}
.ch-bank-grid small,
.ch-bank-grid strong,
.ch-bank-grid code {
  display: block;
}
.ch-bank-grid small {
  color: #b8d1e9;
  font-size: 0.67rem;
}
.ch-bank-grid code,
.ch-bank-grid strong {
  color: #fff;
  font-family: inherit;
  font-size: 0.86rem;
  font-weight: 800;
  margin-top: 3px;
}
.ch-bank-panel > p {
  color: #c7dbed;
  font-size: 0.72rem;
  margin: 13px 0 0;
}
.ch-responsive-table {
  overflow-x: auto;
}
.ch-responsive-table table {
  border-collapse: collapse;
  min-width: 720px;
  width: 100%;
}
.ch-responsive-table th {
  color: #698094;
  font-size: 0.68rem;
  letter-spacing: 0.06em;
  padding: 10px;
  text-align: start;
  text-transform: uppercase;
}
.ch-responsive-table td {
  border-top: 1px solid #e5ecee;
  color: #28445d;
  font-size: 0.78rem;
  padding: 13px 10px;
}
.ch-responsive-table td strong,
.ch-responsive-table td small {
  display: block;
}
.ch-responsive-table td small {
  color: #8291a0;
  font-size: 0.65rem;
  margin-top: 3px;
}
.ch-payment-methods {
  display: grid;
  gap: 10px;
}
.ch-payment-methods article {
  align-items: center;
  background: #f6f9fa;
  border: 1px solid #e0e8eb;
  border-radius: 13px;
  display: flex;
  gap: 11px;
  padding: 13px;
}
.ch-payment-methods article > span {
  align-items: center;
  background: #e4eff8;
  border-radius: 9px;
  display: flex;
  height: 34px;
  justify-content: center;
  width: 34px;
}
.ch-payment-methods article div {
  flex: 1;
}
.ch-payment-methods strong,
.ch-payment-methods small {
  display: block;
}
.ch-payment-methods small {
  color: #74879a;
}
.ch-payment-methods b {
  color: #0d8248;
  font-size: 0.65rem;
}
.ch-hosting-card dl,
.ch-domain-card dl {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(2, 1fr);
  margin: 0;
}
.ch-hosting-card dl div,
.ch-domain-card dl div {
  background: #f7f9fa;
  border-radius: 10px;
  padding: 10px;
}
.ch-hosting-card dt,
.ch-domain-card dt {
  color: #7a8da0;
  font-size: 0.63rem;
}
.ch-hosting-card dd,
.ch-domain-card dd {
  color: #183a58;
  font-size: 0.78rem;
  font-weight: 800;
  margin: 3px 0 0;
}
.ch-inline-form {
  display: grid;
  gap: 13px;
  grid-template-columns: repeat(2, 1fr);
}
.ch-inline-form > .button {
  justify-self: start;
}
.ch-support-code {
  background: linear-gradient(145deg, #f2faf6, #fff);
}
.ch-code-display {
  align-items: center;
  display: flex;
  flex-direction: column;
  padding: 14px;
  text-align: center;
}
.ch-code-display small {
  color: #5f7d6d;
}
.ch-code-display strong {
  color: #087341;
  font-size: 2.5rem;
  letter-spacing: 0.16em;
  margin: 5px 0;
}
.ch-code-display span {
  color: #6a7e72;
  font-size: 0.7rem;
  max-width: 300px;
}
.ch-ticket-form .button {
  margin-top: 15px;
}
.ch-preference-table {
  border: 1px solid #dde7ea;
  border-radius: 14px;
  margin-bottom: 17px;
  overflow-x: auto;
}
.ch-preference-table > div {
  align-items: center;
  display: grid;
  gap: 10px;
  grid-template-columns: 1.2fr repeat(4, 1fr);
  min-width: 680px;
  padding: 11px 14px;
}
.ch-preference-table > div + div {
  border-top: 1px solid #e5ecee;
}
.ch-preference-table .is-head {
  background: #f3f7f8;
  color: #61798d;
  font-size: 0.68rem;
}
.ch-preference-table label {
  align-items: center;
  color: #506a7f;
  display: flex;
  font-size: 0.7rem;
  gap: 6px;
}
.ch-preference-table input {
  accent-color: #159a58;
  height: 17px;
  width: 17px;
}
.ch-security-panel {
  align-items: center;
  background: #edf9f3;
  border-color: #b7dfca;
  display: flex;
  gap: 15px;
}
.ch-security-panel > span {
  align-items: center;
  background: #149455;
  border-radius: 50%;
  color: #fff;
  display: flex;
  flex: 0 0 40px;
  height: 40px;
  justify-content: center;
}
.ch-security-panel h3 {
  color: #0b6539;
  margin: 0 0 4px;
}
.ch-security-panel p {
  color: #527263;
  font-size: 0.78rem;
  margin: 0;
}

@media (max-width: 1080px) {
  .ch-portal-stats {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 820px) {
  .ch-portal-header-inner,
  .ch-portal-title {
    align-items: flex-start;
    flex-direction: column;
  }
  .ch-portal-shell {
    grid-template-columns: 1fr;
    top: -28px;
  }
  .ch-portal-sidebar {
    position: static;
  }
  .ch-portal-sidebar nav {
    grid-template-columns: repeat(2, 1fr);
  }
  .ch-portal-grid,
  .ch-checkout-columns {
    grid-template-columns: 1fr;
  }
  .ch-bank-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .ch-portal-header-actions {
    align-items: stretch;
    flex-direction: column;
    width: 100%;
  }
  .ch-portal-stats,
  .ch-portal-sidebar nav,
  .ch-inline-form {
    grid-template-columns: 1fr;
  }
  .ch-portal-alert {
    align-items: flex-start;
    grid-template-columns: 34px 1fr;
  }
  .ch-portal-alert .button {
    grid-column: 1 / -1;
    grid-row: auto;
    margin-top: 8px;
  }
  .ch-portal-panel {
    padding: 17px;
  }
}
