/* ===== ALL2ALL HUGO BASE ===== */
/* Self-hosted IBM Plex Sans typography */
@font-face {
  font-family: "IBM Plex Sans";
  src: url("/fonts/ibm-plex-sans/IBMPlexSans-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "IBM Plex Sans";
  src: url("/fonts/ibm-plex-sans/IBMPlexSans-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "IBM Plex Sans";
  src: url("/fonts/ibm-plex-sans/IBMPlexSans-SemiBold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "IBM Plex Sans";
  src: url("/fonts/ibm-plex-sans/IBMPlexSans-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "IBM Plex Sans";
  src: url("/fonts/ibm-plex-sans/IBMPlexSans-Italic.woff2") format("woff2");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "IBM Plex Sans";
  src: url("/fonts/ibm-plex-sans/IBMPlexSans-MediumItalic.woff2") format("woff2");
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}

:root {
  --font-sans: "IBM Plex Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --font-mono: "Courier New", Courier, monospace;

  --text-xs: 0.82rem;
  --text-sm: 0.92rem;
  --text-base: 1rem;
  --text-lead: 1.12rem;
  --text-h4: 1.18rem;
  --text-h3: 1.32rem;
  --text-h2: 1.62rem;
  --text-h1: 2.16rem;
  --text-hero: 2.64rem;

  --line-body: 1.7;
  --line-heading: 1.14;

  --color-text: #202321;
  --color-muted: #555f5b;
  --color-line: #e6e8e7;
  --color-page: #ffffff;
  --color-panel: #f7f7f4;
  --color-blue: #1d5c6b;
  --color-green: #637800;
  --color-red: #9f3a32;
  --color-link: var(--color-blue);
  --color-hosting: var(--color-red);
  --color-domains: var(--color-green);
  --color-information: var(--color-blue);
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
}

body {
  min-height: 100%;
  margin: 0;
  background: var(--color-page);
  color: var(--color-text);
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img,
svg,
video {
  max-width: 100%;
  height: auto;
}

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

a {
  color: var(--color-link);
  text-decoration: none;
}

a:hover,
a:focus-visible {
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

#content {
  min-height: 60vh;
}

#content ul,
#content ol {
  padding-left: 1.25rem;
}

#content li {
  margin: 0.25rem 0;
}

#content code,
#content pre,
.code,
.codeblock {
  font-family: var(--font-mono);
}

#content pre {
  overflow-x: auto;
}

/* Legacy compatibility kept intentionally while old content is still being migrated. */
.clearer {
  clear: both;
}

.hidden,
[hidden] {
  display: none !important;
}

/* ===== GLOBAL TYPOGRAPHY SCALE ===== */

html {
  font-size: 16px;
}

body,
input,
textarea,
select,
button {
  font-family: var(--font-sans);
}

body {
  color: var(--color-text);
}

#content,
.page-content,
.single-content {
  font-size: var(--text-base);
  line-height: var(--line-body);
}

#content p,
#content li,
.page-content p,
.page-content li,
.single-content p,
.single-content li {
  color: var(--color-text);
  font-size: var(--text-base);
  line-height: 1.72;
}

#content h1,
#content h2,
#content h3,
#content h4,
.page-content h1,
.page-content h2,
.page-content h3,
.single-content h1,
.single-content h2,
.single-content h3 {
  font-family: var(--font-sans);
  font-weight: 600;
  line-height: var(--line-heading);
  letter-spacing: 0;
  color: var(--color-text);
}

#content h1,
.page-content h1,
.single-content h1 {
  font-size: var(--text-h1);
}

#content h2,
.page-content h2,
.single-content h2 {
  font-size: var(--text-h2);
}

#content h3,
.page-content h3,
.single-content h3 {
  font-size: var(--text-h3);
}

#content h4 {
  font-size: var(--text-h4);
}

#content .lead,
.page-content .lead,
.single-content .lead {
  font-size: var(--text-lead);
  line-height: 1.58;
  color: var(--color-muted);
}

/* ========== HOMEPAGE ========== */

#homepage-v1 {
  color: #262626;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

#homepage-v1,
#homepage-v1 p,
#homepage-v1 li,
#homepage-v1 input,
#homepage-v1 button {
  font-family: var(--font-sans);
}

#homepage-v1 h1,
#homepage-v1 h2,
#homepage-v1 h3,
#homepage-v1 h4 {
  font-family: var(--font-sans);
  font-weight: 600;
  line-height: 1.12;
}

#homepage-v1 .home-container {
  max-width: 1180px;
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
  box-sizing: border-box;
}

#homepage-v1 .home-section {
  width: 100%;
  box-sizing: border-box;
}

#homepage-v1 .home-section-title {
  position: relative;
  margin: 0 0 1.2rem;
  color: #202321;
  font-size: var(--text-h2);
  font-weight: 600;
  line-height: var(--line-heading);
  letter-spacing: 0;
}

#homepage-v1 .home-section-title::after {
  content: "";
  display: block;
  width: 30px;
  height: 2px;
  margin-top: 0.7rem;
  background: #1d5c6b;
}

#homepage-v1 .home-services .home-section-title::after {
  background: #9f3a32;
}

/* Hero */

#homepage-v1 .home-hero {
  width: 100%;
  padding: 3.4rem 0 3.8rem;
  background: #fff;
  border-bottom: 1px solid #e6e8e7;
}

#homepage-v1 .home-hero-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.95fr) minmax(0, 1.05fr);
  gap: 4rem;
  align-items: center;
}

#homepage-v1 .home-hero-figure {
  margin: 0;
}

#homepage-v1 .home-hero-image {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 430px;
  border: 1px solid #e2ddcf;
  border-radius: 8px;
  background: #fff;
  overflow: hidden;
  isolation: isolate;
  transition: transform 0.45s ease, box-shadow 0.45s ease;
}

#homepage-v1 .home-hero-image:hover {
  transform: scale(1.018);
  box-shadow: 0 18px 48px rgba(31, 37, 35, 0.14);
}

#homepage-v1 .home-hero-image::before {
  content: none;
  display: none;
}

#homepage-v1 .home-hero-caption {
  margin-top: 0.45rem;
  color: #8b8f8a;
  font-size: 0.72rem;
  line-height: 1.35;
  text-align: right;
}

#homepage-v1 .fractal-layer,
#fractal-hero .layer {
  position: absolute;
  inset: -42%;
  display: block;
  width: 184%;
  height: 184%;
  min-height: 430px;
  object-fit: cover;
  object-position: center center;
  opacity: 0;
  will-change: opacity, transform;
}

#homepage-v1 .fractal-layer-a,
#fractal-hero .layer-a {
  animation: treeFractalLayerA 64s ease-in-out infinite !important;
  opacity: 1;
  transform: scale(1.52) translate3d(0, 0, 0);
}

#homepage-v1 .fractal-layer-b,
#fractal-hero .layer-b {
  animation: treeFractalLayerB 64s ease-in-out infinite !important;
  mix-blend-mode: multiply;
  opacity: 0;
  transform: scale(3.55) translate3d(var(--b-detail-x, -6%), var(--b-detail-y, 4%), 0) rotate(0.2deg);
}

@keyframes treeFractalLayerA {
  0%, 6% { opacity: 1; transform: scale(1.72) translate3d(-3.2%, 0, 0); filter: contrast(1.03); }
  34% { opacity: 1; transform: scale(var(--a-zoom, 3.72)) translate3d(var(--a-detail-x, 6%), var(--a-detail-y, -4%), 0) rotate(var(--a-rot, -0.12deg)); filter: contrast(1.14); }
  42% { opacity: 0.86; transform: scale(var(--a-zoom-end, 3.86)) translate3d(var(--a-drift-x, 4.5%), var(--a-drift-y, -5.5%), 0) rotate(var(--a-rot-end, -0.24deg)); filter: contrast(1.16); }
  48% { opacity: 0.66; transform: scale(var(--a-zoom-end, 3.86)) translate3d(calc(var(--a-drift-x, 4.5%) + 0.8%), calc(var(--a-drift-y, -5.5%) - 0.5%), 0) rotate(var(--a-rot-end, -0.24deg)); filter: contrast(1.16); }
  54% { opacity: 0.34; transform: scale(var(--a-zoom-end, 3.86)) translate3d(var(--a-drift-x, 4.5%), var(--a-drift-y, -5.5%), 0) rotate(var(--a-rot-end, -0.24deg)); }
  60%, 82% { opacity: 0; transform: scale(var(--a-zoom-end, 3.86)) translate3d(var(--a-drift-x, 4.5%), var(--a-drift-y, -5.5%), 0) rotate(var(--a-rot-end, -0.24deg)); }
  86% { opacity: 0.26; transform: scale(1.56) translate3d(0.5%, -0.4%, 0); filter: contrast(1.06); }
  92% { opacity: 0.84; transform: scale(1.46) translate3d(0.2%, -0.2%, 0); filter: contrast(1.04); }
  100% { opacity: 1; transform: scale(1.52) translate3d(0, 0, 0); filter: contrast(1.03); }
}

@keyframes treeFractalLayerB {
  0%, 24% { opacity: 0; transform: scale(var(--b-zoom, 3.58)) translate3d(var(--b-detail-x, -6%), var(--b-detail-y, 4%), 0) rotate(var(--b-rot, 0.16deg)); }
  34% { opacity: 0.38; transform: scale(var(--b-zoom, 3.58)) translate3d(var(--b-detail-x, -6%), var(--b-detail-y, 4%), 0) rotate(var(--b-rot, 0.16deg)); filter: contrast(1.18); }
  45% { opacity: 0.72; transform: scale(var(--b-zoom, 3.58)) translate3d(calc(var(--b-detail-x, -6%) - 0.7%), calc(var(--b-detail-y, 4%) + 0.4%), 0) rotate(var(--b-rot, 0.16deg)); filter: contrast(1.18); }
  58% { opacity: 0.9; transform: scale(var(--b-zoom-end, 3.38)) translate3d(var(--b-drift-x, -4.5%), var(--b-drift-y, 4.8%), 0) rotate(var(--b-rot-end, 0.08deg)); filter: contrast(1.15); }
  72% { opacity: 0.9; transform: scale(2.32) translate3d(-3%, 2%, 0) rotate(0.04deg); filter: contrast(1.1); }
  82% { opacity: 0.84; transform: scale(1.58) translate3d(0.4%, -0.4%, 0) rotate(0deg); filter: contrast(1.05); }
  89% { opacity: 0.42; transform: scale(1.48) translate3d(0.2%, -0.2%, 0); }
  96%, 100% { opacity: 0; transform: scale(1.52) translate3d(0, 0, 0); }
}

#homepage-v1 .fractal-shade {
  display: none;
}

#homepage-v1 .fractal-label {
  display: none;
}

#homepage-v1 .home-hero-inner {
  max-width: 620px;
  margin: 0;
  padding: 0;
  text-align: left;
}

#homepage-v1 .home-hero-kicker {
  display: inline-flex;
  align-items: baseline;
  gap: 0.7rem;
  margin: 0 0 1.15rem;
  color: var(--color-text);
  font-size: var(--text-kicker);
  font-weight: 700;
  letter-spacing: 0.14em;
  line-height: 1.2;
  text-transform: uppercase;
}

#homepage-v1 .home-hero-kicker img {
  display: block;
  width: 3.45rem;
  height: auto;
  transform: translateY(0.14em);
}

#homepage-v1 .home-hero-title {
  display: block;
  width: 100%;
  max-width: 620px;
  margin: 0 0 1.15rem;
  color: #161817;
  background: linear-gradient(102deg, var(--color-green) 0%, var(--color-blue) 34%, var(--color-red) 66%, #151716 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: var(--text-hero);
  font-weight: 700;
  line-height: 1.13;
  text-align: left;
}

@supports not ((background-clip: text) or (-webkit-background-clip: text)) {
  #homepage-v1 .home-hero-title {
    color: #161817;
  }
}

#homepage-v1 .home-hero-subtitle {
  max-width: 620px;
  margin: 0 0 1.8rem;
  color: #303431;
  font-size: var(--text-lead);
  font-weight: 500;
  line-height: 1.58;
  text-align: left;
}

#homepage-v1 .home-hero-actions {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 0.9rem;
}

#homepage-v1 .home-button {
  display: inline-block;
  padding: 0.76rem 1.16rem;
  border-radius: 3px;
  color: #fff;
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
  transition: background 0.18s ease, transform 0.18s ease;
}

#homepage-v1 .home-button:hover {
  transform: translateY(-1px);
}

#homepage-v1 .home-button-primary {
  background: #1d5c6b;
}

#homepage-v1 .home-button-secondary {
  background: #9f3a32;
}

/* Manifesto and services */

#homepage-v1 .home-manifesto-services {
  padding: 3.2rem 0;
}

#homepage-v1 .home-two-columns {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 4rem;
  align-items: start;
}

#homepage-v1 .home-manifesto,
#homepage-v1 .home-services {
  min-width: 0;
  padding-top: 0;
}

#homepage-v1 .home-manifesto p,
#homepage-v1 .home-services p,
#homepage-v1 .home-service-list li {
  color: #343936;
  font-size: var(--text-base);
  line-height: 1.74;
}

#homepage-v1 .home-section-intro {
  margin-top: 0;
  color: #252927;
  font-weight: 500;
}

#homepage-v1 .home-service-list {
  padding-left: 1.05rem;
  margin-top: 0.9rem;
}

#homepage-v1 .home-service-list li {
  margin-bottom: 0.28rem;
}

#homepage-v1 .home-manifesto-more {
  margin-top: 1rem;
}

#homepage-v1 .home-read-more {
  color: #1d5c6b;
  cursor: pointer;
}

/* Quote */

#homepage-v1 .home-quote {
  width: 100%;
  padding: 3.4rem 0;
  background: #fff;
  border-top: 1px solid #e6e8e7;
}

#homepage-v1 .home-quote-layout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
}

#homepage-v1 .home-quote-text {
  flex: 1 1 58%;
  max-width: 900px;
  margin: 0 auto;
}

#homepage-v1 .home-quote-mark {
  display: block;
  margin: 0 0 0.35rem;
  font-family: var(--font-sans);
  font-size: 6.25rem;
  font-weight: 700;
  line-height: 0.7;
  color: #1d5c6b;
  opacity: 0.16;
}

#homepage-v1 .home-quote-body {
  max-width: 1180px;
  margin: 0;
  padding: 0;
  border: 0;
  color: #202321;
  font-family: var(--font-sans);
  font-size: clamp(2.45rem, 5.2vw, 4.85rem);
  font-style: italic;
  font-weight: 500;
  line-height: 1.08;
  text-align: left;
}

#homepage-v1 .home-quote-body p {
  margin: 0 0 0.58rem;
}

#homepage-v1 .home-quote-author {
  margin: 1.2rem 0 0;
  color: var(--color-muted);
  font-size: var(--text-base);
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0;
  text-align: right;
}

#homepage-v1 .home-quote-image {
  flex: 0 1 38%;
  max-width: 38%;
  text-align: right;
}

#homepage-v1 .home-quote-img {
  display: inline-block;
  width: 100%;
  max-width: 420px;
  height: auto;
  border-radius: 6px;
}

/* Debian consulting */

#homepage-v1 .home-consulting {
  padding: 4rem 0 4.4rem;
  border-top: 1px solid #e6e8e7;
  background: #fff;
}

#homepage-v1 .home-consulting-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
  gap: 4rem;
  align-items: center;
}

#homepage-v1 .home-consulting-media {
  justify-self: center;
  width: min(100%, 500px);
  padding: 0.45rem;
  border: 1px solid #e2ddcf;
  border-radius: 8px;
  background: #f7f3e8;
}

#homepage-v1 .home-consulting-media img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 5px;
}

#homepage-v1 .home-consulting-text h2 {
  margin: 0 0 1rem;
  color: var(--color-text);
  font-size: var(--text-h1);
  font-weight: 600;
  line-height: var(--line-heading);
}

#homepage-v1 .home-consulting-text p {
  margin: 0 0 1rem;
  color: var(--color-text);
  font-size: var(--text-base);
  line-height: 1.68;
}

#homepage-v1 .home-consulting-actions {
  margin-top: 1.35rem;
}

@media (max-width: 900px) {
  #homepage-v1 .home-consulting-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  #homepage-v1 .home-consulting-media {
    width: min(100%, 520px);
  }
}

/* Case study */

#homepage-v1 .home-case-study {
  padding: 3.4rem 0 4rem;
  border-top: 1px solid #e6e8e7;
  background: #fff;
}

#homepage-v1 .home-case-study-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.88fr) minmax(0, 1.12fr);
  gap: 4rem;
  align-items: center;
}

#homepage-v1 .home-case-study-media {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 250px;
  padding: 0.7rem;
  border: 1px solid #e2ddcf;
  border-radius: 8px;
  background: #f7f3e8;
  overflow: hidden;
}

#homepage-v1 .home-case-study-media img {
  display: block;
  width: 100%;
  max-width: 520px;
  height: auto;
}

#homepage-v1 .home-section-kicker {
  margin: 0 0 0.7rem;
  color: var(--color-red);
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 0.06em;
  line-height: 1.2;
  text-transform: uppercase;
}

#homepage-v1 .home-case-study-text h2 {
  margin: 0 0 1rem;
  color: var(--color-text);
  font-size: var(--text-h1);
  font-weight: 600;
  line-height: var(--line-heading);
}

#homepage-v1 .home-case-study-text p {
  margin: 0 0 1.15rem;
  color: var(--color-text);
  font-size: var(--text-base);
  line-height: 1.74;
}

#homepage-v1 .home-case-study-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  margin-top: 1.3rem;
}

#homepage-v1 .home-link-more {
  color: var(--color-blue);
  font-size: var(--text-sm);
  font-weight: 600;
  text-decoration: none;
}

#homepage-v1 .home-link-more::after {
  content: "→";
  margin-left: 0.4rem;
}

#homepage-v1 .home-link-more:hover,
#homepage-v1 .home-link-more:focus-visible {
  text-decoration: underline;
}

@media (max-width: 900px) {
  #homepage-v1 .home-two-columns {
    grid-template-columns: 1fr;
  }

  #homepage-v1 .home-hero {
    padding: 2.4rem 0 3rem;
  }

  #homepage-v1 .home-hero-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  #homepage-v1 .home-hero-image {
    min-height: 260px;
    max-height: 360px;
  }

  #homepage-v1 .fractal-layer {
    min-height: 260px;
  }

  #homepage-v1 .home-hero-inner {
    max-width: none;
  }

  #homepage-v1 .home-hero-kicker {
    margin-bottom: 0.9rem;
    font-size: 0.86rem;
    letter-spacing: 0.1em;
  }

  #homepage-v1 .home-hero-title {
    font-size: 2.1rem;
  }

  #homepage-v1 .home-quote-layout,
  #homepage-v1 .home-case-study-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  #homepage-v1 .home-quote-text {
    max-width: none;
    margin-bottom: 2rem;
  }

  #homepage-v1 .home-quote-image {
    max-width: none;
    text-align: center;
  }

  #homepage-v1 .home-quote-img {
    max-width: 100%;
    width: auto;
  }

  #homepage-v1 .home-case-study-media {
    min-height: 0;
  }
}

/* ===== 11. MODERN HEADER ===== */

.site-header-modern {
  position: relative;
  width: 100%;
  background: #ffffff;
  border-bottom: 1px solid #e6e8e7;
  font-family: var(--font-sans);
}

.site-header-modern::before {
  content: "";
  display: block;
  height: 3px;
  background: linear-gradient(90deg, #1d5c6b 0%, #6a7f00 52%, #c43c2f 100%);
}

.site-header-top {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0.52rem 24px 0;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 1.2rem;
  font-size: 0.86rem;
  line-height: 1;
  position: relative;
}

.site-header-top-left {
  position: absolute;
  left: 50%;
  top: 0.48rem;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 0.48rem;
  white-space: nowrap;
}

.site-header-top-right {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.site-header-top a {
  color: #5f6462;
  text-decoration: none;
  white-space: nowrap;
}

.site-header-top a:hover {
  color: #202321;
}

.site-header-top-left a {
  position: relative;
  padding-bottom: 0.4rem;
  font-size: 0.78rem;
  letter-spacing: 0.02em;
}

.site-header-top-left a.active::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 5px;
  height: 5px;
  background: #1d5c6b;
  border-radius: 50%;
  transform: translateX(-50%);
}

.site-domain-check {
  display: flex;
  align-items: center;
  gap: 0.38rem;
  margin-left: 0.45rem;
  position: relative;
  white-space: nowrap;
}

.site-domain-check input {
  width: 168px;
  padding: 0.34rem 0.72rem;
  border: 1px solid #d9dddb;
  border-radius: 999px;
  background: #fbfbfa;
  color: #202321;
  font-size: 0.84rem;
  line-height: 1;
}

.site-domain-check input:focus {
  outline: none;
  border-color: #9ab0b6;
  background: #fff;
}

.site-domain-check button {
  padding: 0.34rem 0.74rem;
  border: 1px solid #d9dddb;
  border-radius: 999px;
  background: #fff;
  color: #202321;
  cursor: pointer;
  font-size: 0.84rem;
  line-height: 1;
}

.site-domain-check button:disabled {
  cursor: wait;
  opacity: 0.65;
}

.site-domain-check-status {
  position: absolute;
  top: calc(100% + 0.32rem);
  right: 0;
  z-index: 20;
  width: min(300px, 72vw);
  padding: 0.48rem 0.62rem;
  border: 1px solid #d9dddb;
  border-radius: 6px;
  background: #fff;
  color: #202321;
  box-shadow: 0 10px 24px rgba(28, 30, 29, 0.12);
  font-size: 0.78rem;
  line-height: 1.35;
  white-space: normal;
}

.site-domain-check-status[data-state="success"] {
  border-color: rgba(98, 124, 26, 0.35);
  color: #627c1a;
}

.site-domain-check-status[data-state="warning"] {
  border-color: rgba(155, 119, 44, 0.35);
  color: #6f551f;
}

.site-domain-check-status[data-state="error"] {
  border-color: rgba(160, 65, 54, 0.35);
  color: #a04136;
}

.site-header-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0.92rem 24px 0;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.site-logo-modern img {
  height: 44px;
  width: auto;
  display: block;
}

.site-main-nav {
  max-width: 1280px;
  margin: -1.02rem auto 0;
  padding: 0 24px 0.92rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2.7rem;
  flex-wrap: nowrap;
  white-space: nowrap;
  overflow: hidden;
}

.site-nav-item {
  display: inline-flex;
  align-items: center;
  gap: 0.62rem;
  padding: 0.35rem 0.46rem;
  border-radius: 4px;
  color: #202321;
  text-decoration: none;
  white-space: nowrap;
  flex: 0 0 auto;
  transition: background 0.18s ease, color 0.18s ease;
}

.site-nav-item:hover {
  background: #f4f6f5;
}

.site-nav-item span {
  font-size: var(--text-h2);
  font-weight: 600;
  line-height: var(--line-heading);
  letter-spacing: 0;
  white-space: nowrap;
}

.site-nav-item img {
  width: auto;
  object-fit: contain;
  display: block;
  flex: 0 0 auto;
  filter: grayscale(0.08) saturate(0.82);
  opacity: 0.82;
}

.site-nav-hosting img {
  height: 20px;
}

.site-nav-domains img {
  height: 24px;
}

.site-nav-information img {
  height: 20px;
}

.site-nav-hosting span {
  color: #8a3d00;
}

.site-nav-domains span {
  color: #637800;
}

.site-nav-information span {
  color: #1d5c6b;
}

@media (max-width: 900px) {
  .site-header-top {
    display: block;
    padding-top: 0.6rem;
  }

  .site-header-top-left,
  .site-header-top-right {
    position: static;
    transform: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 0.45rem;
  }

  .site-domain-check {
    margin-left: 0;
    margin-top: 0.2rem;
  }

  .site-header-inner {
    justify-content: center;
    padding-top: 0.6rem;
  }

  .site-logo-modern img {
    height: 40px;
  }

  .site-main-nav {
    justify-content: flex-start;
    overflow-x: auto;
    gap: 1.45rem;
    margin-top: 0.65rem;
    padding-bottom: 0.8rem;
  }

  .site-nav-item span {
    font-size: 1.06rem;
  }
}

/* ===== 13. RESPONSIVE ===== */

@media (max-width: 900px) {

  .site-header-top {
    display: block;
  }

  .site-header-top-left,
  .site-header-top-right {
    position: static;
    transform: none;
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 0.4rem;
  }

  .site-domain-check {
    margin-left: 0;
    margin-top: 0.3rem;
  }

  .site-main-nav {
    justify-content: flex-start;
    overflow-x: auto;
    gap: 1.4rem;
    margin-top: 0;
  }

  .site-nav-item span {
    font-size: 1.2rem;
  }
}


/* Information section illustrated headers */
.information-page-hero {
  max-width: 760px;
  margin: 1.45rem 0 2.2rem;
  overflow: hidden;
  border: 1px solid #e5e0d2;
  border-radius: 8px;
  background: #f6f1e6;
  box-shadow: 0 10px 26px rgba(38, 31, 29, 0.06);
}

.information-page-hero img {
  display: block;
  width: 100%;
  height: min(38vw, 360px);
  min-height: 240px;
  object-fit: cover;
  object-position: center;
}

.about-all2all-hero img {
  object-position: center 48%;
}

@media (max-width: 760px) {
  .information-page-hero img {
    height: 280px;
    min-height: 220px;
  }
}


.about-history-gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 1.45rem 0 1.35rem;
}

.about-history-gallery a {
  display: grid;
  grid-template-rows: auto 1fr;
  width: min(13rem, 46%);
  max-width: 13rem;
  padding: 0.55rem;
  border: 1px solid #e5e0d2;
  border-radius: 8px;
  background: #f8f4ea;
  color: var(--color-text);
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(38, 31, 29, 0.055);
}

.about-history-gallery a:hover,
.about-history-gallery a:focus-visible {
  border-color: rgba(29, 92, 107, 0.35);
  box-shadow: 0 12px 26px rgba(38, 31, 29, 0.085);
}

.about-history-gallery img {
  display: block;
  width: 100%;
  height: 11rem;
  object-fit: cover;
  border-radius: 5px;
}

.about-history-gallery span {
  display: block;
  margin-top: 0.55rem;
  font-size: var(--text-xs);
  font-weight: 650;
  line-height: 1.35;
}

@media (max-width: 560px) {
  .about-history-gallery a {
    width: 100%;
    max-width: none;
  }
}

/* ========== CASE STUDY PAGE ========== */

#case-study-page {
  color: #222;
}

#case-study-page .home-container {
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
}

/* ===== CASE STUDY HERO ===== */

#case-study-page .case-study-hero {
  padding: 4rem 0 3rem;
  background: #ffffff;
  text-align: center;
}

#case-study-page .case-study-hero h1 {
  margin: 0 auto 1rem auto;
  max-width: 900px;
  font-family: var(--font-sans);
  font-size: 2.55rem;
  font-weight: 600;
  line-height: 1.08;
  text-align: center;
}

#case-study-page .case-study-intro {
  max-width: 760px;
  margin: 0 auto;
  font-family: var(--font-sans);
  font-size: 1.40rem;
  line-height: 1.42;
  text-align: center;
}

/* ===== CASE STUDY BLOCKS ===== */

#case-study-page .home-case-studies {
  padding: 2.2rem 0 4rem;
}

#case-study-page .home-case-row {
  display: flex;
  align-items: center;
  gap: 4rem;
  margin-bottom: 5.5rem;
}

#case-study-page .home-case-row.reverse {
  flex-direction: row;
}

#case-study-page .home-case-text {
  flex: 1 1 58%;
  max-width: 58%;
}

#case-study-page .home-case-text h3 {
  font-size: 1.7rem;
  margin: 0 0 0.35rem 0;
  line-height: 1.15;
}

#case-study-page .home-case-text h4 {
  font-size: 1.08rem;
  font-style: italic;
  font-weight: normal;
  opacity: 0.8;
  margin: 0 0 1.1rem 0;
}

#case-study-page .home-case-text p {
  line-height: 1.8;
  font-size: 1.08rem;
  margin: 0 0 1rem 0;
}

#case-study-page .home-case-image {
  flex: 0 1 36%;
  max-width: 36%;
}

#case-study-page .home-case-image img {
  width: 100%;
  max-width: 450px;
  max-height: 330px;
  object-fit: cover;
  display: block;
  background: #fff;
  padding: 6px;
  border-radius: 14px 4px 14px 14px;
  border: 0.5px solid #000;
  margin-left: auto;
  transition: transform 0.28s ease, box-shadow 0.28s ease;
  transform-origin: center center;
}


#case-study-page .home-case-image.portrait img {
  max-width: 380px;
  max-height: none;
  aspect-ratio: auto;
  object-fit: contain;
}

#case-study-page .home-case-image img:hover {
  transform: scale(2.00);
  box-shadow: 0 10px 28px rgba(0,0,0,0.16);
}

#case-study-page .case-study-quote {
  margin-top: 1.4rem;
  padding: 1.15rem 1.35rem;
  background: #f5f5f3;
  font-style: italic;
  font-family: var(--font-sans);
  font-size: var(--text-base);
  line-height: 1.65;
  border-left: 3px solid #d6d6d0;
  position: relative;
}

#case-study-page .case-study-quote::before {
  content: "“";
  position: absolute;
  left: 0.55rem;
  top: -0.2rem;
  font-size: 2.2rem;
  line-height: 1;
  opacity: 0.35;
  font-family: var(--font-sans);
}

/* ===== CASE STUDY RESPONSIVE ===== */

@media (max-width: 900px) {
  #case-study-page .home-case-row,
  #case-study-page .home-case-row.reverse {
    display: block;
  }

  #case-study-page .home-case-text,
  #case-study-page .home-case-image {
    max-width: none;
  }

  #case-study-page .home-case-image {
    margin-top: 2rem;
  }

  #case-study-page .home-case-image img {
    max-width: 100%;
    max-height: none;
    margin-left: 0;
  }

  #case-study-page .case-study-hero h1 {
    font-size: 2rem;
  }

  #case-study-page .case-study-intro {
    font-size: 1.02rem;
  }

  #case-study-page .home-case-text p {
    font-size: 1.02rem;
  }
}

/* ===== 14. MODERN FOOTER ===== */

.site-footer-modern {
  margin-top: 4rem;
  border-top: 1px solid #ddd;
  background: #f8f8f6;
  padding: 2.8rem 0 2.2rem;
}

.site-footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
}

.site-footer-intro h3 {
  margin: 0 0 0.5rem 0;
  font-family: var(--font-sans);
  font-size: 1.5rem;
  font-weight: 600;
}

.site-footer-intro p {
  margin: 0 auto 1.4rem auto;
  max-width: 760px;
  line-height: 1.6;
  font-size: 1rem;
  color: #444;
}

.site-footer-nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.4rem;
  margin-bottom: 1.4rem;
}

.site-footer-nav a {
  text-decoration: none;
  color: #1d5c6b;
  font-weight: 500;
}

.site-footer-nav a:hover {
  text-decoration: underline;
}

.site-footer-meta {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.5;
}

.site-footer-trust {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  margin-bottom: 1.4rem;
}

.site-footer-trust img {
  height: 26px;
  width: auto;
  opacity: 0.72;
}

.site-footer-trust {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  margin-bottom: 1.4rem;
}

.site-footer-trust a {
  display: inline-flex;
  align-items: center;
}

.site-footer-trust img {
  height: 24px;
  width: auto;
  opacity: 0.72;
}

.site-footer-trust a:last-child img {
  height: 20px;
}

.site-footer-trust a:hover img {
  opacity: 1;
}

/* ===== 15. INSTITUTIONAL DOCUMENT PAGES ===== */

.page-content,
.single-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 3rem 24px 4rem 24px;
  color: #222;
}

.page-content h1,
.page-content h2,
.page-content h3,
.single-content h1,
.single-content h2,
.single-content h3 {
  font-family: var(--font-sans);
  font-weight: 600;
  line-height: 1.15;
}

.page-content h1,
.single-content h1 {
  font-size: var(--text-h1);
  margin-bottom: 1.2rem;
}

.page-content h2,
.single-content h2 {
  font-size: var(--text-h2);
  margin-top: 2.4rem;
  margin-bottom: 0.8rem;
}

.page-content p,
.page-content li,
.single-content p,
.single-content li {
  font-family: var(--font-sans);
  font-size: var(--text-base);
  line-height: 1.72;
}

.page-content ul,
.single-content ul {
  padding-left: 1.2rem;
}

.page-content a,
.single-content a {
  color: #1d5c6b;
  text-decoration: none;
}

.page-content a:hover,
.single-content a:hover {
  text-decoration: underline;
}

/* ===== INFORMATION LAYOUT ===== */

.information-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 320px);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: flex-start;
  width: min(1320px, calc(100% - 3rem));
  margin: 0 auto;
  padding: 2.25rem 0 3rem;
}

.information-main {
  min-width: 0;
  max-width: 820px;
  line-height: 1.65;
}

.information-main h2 {
  margin-top: 2.2rem;
}

.information-main p,
.information-main ul {
  margin-bottom: 1rem;
}

.information-sidebar {
  position: sticky;
  top: 2rem;
  align-self: start;
}

.information-nav-group {
  margin: 0 0 0.8rem 0;
  border: 1px solid rgba(37, 47, 45, 0.12);
  border-radius: 6px;
  background: #fafbfa;
  overflow: hidden;
}

.information-nav-toggle {
  width: 100%;
  text-align: left;
  padding: 0.85rem 1rem;
  border: 0;
  background: transparent;
  font: inherit;
  cursor: pointer;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.information-nav-panel {
  padding: 0 1rem 1rem;
  border-top: 1px solid rgba(37, 47, 45, 0.08);
}

.information-nav-list,
.information-nav-sublist {
  list-style: none;
  margin: 0;
  padding: 0;
}

.information-nav-list > li {
  margin: 0.4rem 0;
}

.information-nav-sublist {
  margin: 0.35rem 0 0.6rem 0;
  padding-left: 1rem;
}

.information-nav-sublist li {
  margin: 0.25rem 0;
  font-size: 0.95em;
}

.information-nav-item.is-active > a,
.information-nav-sublist a.is-active,
.information-nav-direct-link a.is-active {
  font-weight: 600;
  color: var(--color-blue);
  text-decoration: none;
}

.information-subnav-toggle {
  width: 100%;
  text-align: left;
  padding: 0.4rem 0;
  border: 0;
  background: transparent;
  font: inherit;
  cursor: pointer;
  font-weight: 500;
}

.information-nav-item.is-open > .information-subnav-toggle {
  font-weight: 600;
}

@media (max-width: 960px) {
  .information-layout {
    grid-template-columns: 1fr;
  }

  .information-sidebar {
    position: static;
  }
}

.section-list-date,
.news-meta {
  color: #666;
  font-size: 0.95em;
}

.section-list-date {
  display: inline-block;
  min-width: 7.5em;
  margin-right: 0.5rem;
}

.news-meta {
  margin-bottom: 1rem;
}

.hosting-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.hosting-card {
  padding: 1.5rem;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

.hosting-card.simple {
  border: 2px solid #d9a0a0;
}

.hosting-card.recommended {
  border: 2px solid #c00000;
}

.hosting-card.large {
  border: 2px solid #7a0000;
}

.hosting-card h2 {
  margin-top: 0;
  margin-bottom: 0.5rem;
}

.hosting-price {
  font-size: 1.15rem;
  font-weight: 600;
  margin: 0 0 0.75rem 0;
}

.hosting-use {
  margin: 0 0 1rem 0;
  color: #555;
}

.hosting-card ul {
  margin: 0;
  padding-left: 1.2rem;
}

.hosting-card li {
  margin-bottom: 0.45rem;
}

.hosting-card.featured {
  border-width: 2px;
}

@media (max-width: 900px) {
  .hosting-grid {
    grid-template-columns: 1fr;
  }
}


/* Hosting diagrams */

.hosting-diagram {
  position: relative;
  width: 100%;
  max-width: 700px;
  height: 420px;
  margin: 2rem auto;
}

.hosting-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

.hosting-center img {
  width: 90px;
}

.hosting-center span {
  display: block;
  margin-top: 0.5rem;
  font-size: 0.9rem;
  color: #444;
}

.hosting-node {
  position: absolute;
  padding: 0.4rem 0.8rem;
  background: #f7f7f7;
  border-radius: 12px;
  font-size: 0.9rem;
  color: #444;
  box-shadow: 0 1px 4px rgba(0,0,0,0.08);
}

/* positions */

.node-top-left {
  top: 20px;
  left: 80px;
}

.node-top {
  top: 10px;
  left: 300px;
}

.node-top-right {
  top: 20px;
  right: 80px;
}

.node-left {
  top: 160px;
  left: 20px;
}

.node-right {
  top: 160px;
  right: 20px;
}

.node-bottom-left {
  bottom: 80px;
  left: 80px;
}

.node-bottom {
  bottom: 40px;
  left: 260px;
}

.node-bottom-right {
  bottom: 80px;
  right: 80px;
}

.node-bottom-far {
  bottom: 10px;
  right: 280px;
}

/* Hosting plan cards */

.hosting-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
  align-items: start;
}

.hosting-card {
  position: relative;
  background: #fff;
  border-radius: 2rem 2rem 4rem 2rem;
  box-shadow: 0 10px 24px rgba(0,0,0,0.08);
  padding: 2rem 1.8rem 4.2rem 1.8rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.hosting-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(0,0,0,0.12);
}

.hosting-card.recommended {
  transform: scale(1.03);
  box-shadow: 0 14px 30px rgba(0,0,0,0.12);
}

.hosting-card h3 {
  text-align: center;
  font-size: 1.7rem;
  margin: 0 0 1rem 0;
  letter-spacing: 0.03em;
}

.hosting-card ul {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
}

.hosting-card ul li {
  padding: 0.55rem 0;
  border-bottom: 1px solid #eee;
  font-size: 0.97rem;
}

.hosting-card .card-footer {
  margin-top: 1.25rem;
  font-weight: 600;
  text-align: center;
  font-size: 0.95rem;
  color: #555;
}

.hosting-card .price-ribbon {
  position: absolute;
  top: 1.2rem;
  right: -0.6rem;
  color: #fff;
  font-size: 0.95rem;
  padding: 0.4rem 1rem;
  font-weight: 600;
  line-height: 1;
}

.hosting-card .price-ribbon::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -10px;
  border-left: 10px solid transparent;
}

.hosting-order-ribbon {
  position: absolute;
  bottom: 0;
  left: 0;
  color: #fff;
  padding: 0.6rem 1.5rem;
  font-weight: 600;
  font-size: 0.9rem;
  line-height: 1;
  text-decoration: none;
}

.hosting-order-ribbon::before {
  content: "";
  position: absolute;
  top: -10px;
  left: 0;
  border-right: 10px solid transparent;
}

.hosting-card.simple h3 {
  color: #d84b2a;
}

.hosting-card.recommended h3 {
  color: #4a7c59;
}

.hosting-card.large h3 {
  color: #3c6fa8;
}

.hosting-card.simple .price-ribbon,
.hosting-card.simple .hosting-order-ribbon {
  background: #d84b2a;
}

.hosting-card.simple .price-ribbon::after {
  border-top: 10px solid #a5371e;
}

.hosting-card.simple .hosting-order-ribbon::before {
  border-bottom: 10px solid #a5371e;
}

.hosting-card.recommended .price-ribbon,
.hosting-card.recommended .hosting-order-ribbon {
  background: #4a7c59;
}

.hosting-card.recommended .price-ribbon::after {
  border-top: 10px solid #355a41;
}

.hosting-card.recommended .hosting-order-ribbon::before {
  border-bottom: 10px solid #355a41;
}

.hosting-card.large .price-ribbon,
.hosting-card.large .hosting-order-ribbon {
  background: #3c6fa8;
}

.hosting-card.large .price-ribbon::after {
  border-top: 10px solid #2b4f79;
}

.hosting-card.large .hosting-order-ribbon::before {
  border-bottom: 10px solid #2b4f79;
}

@media (max-width: 700px) {
  .hosting-card {
    border-radius: 1.5rem;
    padding: 1.5rem 1.2rem 3.6rem 1.2rem;
  }

  .hosting-card.recommended {
    transform: none;
  }

  .hosting-card .price-ribbon {
    right: 0;
  }
}

/* Hosting order form */

.order-summary-box {
  border: 1px solid #ddd;
  background: #f8f8f8;
  padding: 1rem 1.2rem;
  margin: 1.5rem 0 2rem 0;
}

.order-summary-box p {
  margin: 0 0 0.5rem 0;
}

.order-summary-note {
  font-size: 0.92rem;
  color: #666;
}

.hosting-order-form fieldset {
  border: 1px solid #ddd;
  padding: 1.2rem;
  margin: 0 0 1.5rem 0;
}

.hosting-order-form legend {
  font-weight: 600;
  padding: 0 0.4rem;
}

.hosting-order-form label {
  display: block;
  margin: 0.9rem 0 0.35rem 0;
  font-weight: 500;
}

.hosting-order-form input,
.hosting-order-form select,
.hosting-order-form textarea {
  width: 100%;
  max-width: 100%;
  padding: 0.7rem;
  border: 1px solid #bbb;
  box-sizing: border-box;
}

.checkbox-row {
  display: flex !important;
  align-items: center;
  gap: 0.6rem;
  font-weight: 400 !important;
}

.checkbox-row input {
  width: auto;
}

.field-help {
  font-size: 0.9rem;
  color: #666;
  margin: 0.3rem 0 0 0;
}

.conditional-row,
.conditional-block {
  margin-top: 0.8rem;
}

.form-actions {
  margin-top: 2rem;
}

.form-actions button {
  padding: 0.8rem 1.4rem;
  font-size: 1rem;
  cursor: pointer;
}

.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px !important;
  height: 1px !important;
  opacity: 0;
  pointer-events: none;
}

#transfer-code-row {
  display: none;
}

 /* Hosting order page */

.hosting-order-page {
  max-width: 900px;
}

.field-error {
  border: 2px solid #c43c2f !important;
  background: #fff8f7;
}

.error-message {
  color: #c43c2f;
  font-size: 0.9rem;
  margin: 0.35rem 0 0 0;
}

.error-box {
  border: 1px solid #c43c2f;
  background: #fff3f1;
  color: #8c2a20;
  padding: 1rem 1.2rem;
  margin: 0 0 1.5rem 0;
}

/* ========== INFORMATION CONTENT HELPERS ========== */

.feature-link-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
  margin: 1.4rem 0 2rem;
}

.feature-link-grid a {
  display: block;
  border: 1px solid rgba(37, 47, 45, 0.12);
  border-radius: 6px;
  padding: 0.9rem 1rem;
  text-decoration: none;
  background: #fff;
  font-weight: 600;
}

.feature-link-grid a:hover {
  border-color: #1d5c6b;
  background: #f8fbfa;
}

.infrastructure-visual {
  margin: 1.5rem 0 2rem;
}

.infrastructure-visual img,
.media-grid img {
  display: block;
  width: 100%;
  height: auto;
  border: 1px solid #ddd;
  border-radius: 6px;
}

.media-grid {
  display: grid;
  gap: 1rem;
  margin: 1.5rem 0 2rem;
}

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

@media (max-width: 900px) {
  .feature-link-grid,
  .media-grid-three {
    grid-template-columns: 1fr;
  }
}


/* ===== HOSTING LANDING PAGE ===== */

.hosting-page {
  color: var(--color-text);
  background: #fff;
}

.hosting-page-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
  box-sizing: border-box;
}

.hosting-page-hero {
  padding: 4.2rem 0 2.6rem;
  border-bottom: 1px solid #e6e8e7;
  background:
    linear-gradient(115deg, rgba(159,58,50,0.08), rgba(201,106,98,0.06) 55%, rgba(111,33,28,0.05)),
    #fff;
}

.hosting-page-kicker {
  margin: 0 0 0.8rem;
  color: var(--color-red);
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hosting-page h1,
.hosting-page h2,
.hosting-page h3 {
  font-family: var(--font-sans);
  letter-spacing: 0;
}

.hosting-page h1 {
  max-width: 780px;
  margin: 0 0 1rem;
  font-size: var(--text-hero);
  font-weight: 700;
  line-height: 1.08;
}

.hosting-page-intro {
  max-width: 820px;
  margin: 0;
  color: var(--color-muted);
  font-size: var(--text-lead);
  line-height: 1.62;
}

.hosting-page-section {
  padding: 3.4rem 0;
}

.hosting-page-section + .hosting-page-section {
  border-top: 1px solid #edf0ef;
}

.hosting-page-section > .hosting-page-inner > h2,
.hosting-rich-text h2 {
  margin: 0 0 1.4rem;
  font-size: var(--text-h2);
  font-weight: 600;
  line-height: var(--line-heading);
}

.hosting-rich-text {
  max-width: 860px;
}

.hosting-rich-text p {
  max-width: 820px;
  margin: 0 0 1rem;
  color: var(--color-text);
  font-size: var(--text-base);
  line-height: 1.72;
}

.hosting-maturity-section .hosting-rich-text {
  max-width: 900px;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.hosting-maturity-section .hosting-rich-text p {
  max-width: 760px;
  margin-right: auto;
  margin-left: auto;
}

.hosting-page .hosting-plan-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.4rem;
  margin: 1.7rem 0 0;
  align-items: stretch;
}

.hosting-page .hosting-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 1.45rem 1.35rem 1.35rem;
  border: 1px solid #e1e5e3;
  border-radius: 8px;
  background: #fff;
  box-shadow: none;
  transform: none;
  transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

.hosting-page .hosting-card:hover {
  transform: translateY(-2px);
  border-color: #cdd7d4;
  box-shadow: 0 10px 24px rgba(0,0,0,0.06);
}

.hosting-page .hosting-card.recommended {
  transform: translateY(-0.45rem);
  border-color: rgba(159, 58, 50, 0.38);
  background: linear-gradient(180deg, rgba(159, 58, 50, 0.035), #fff 34%);
  box-shadow: 0 18px 34px rgba(72, 41, 36, 0.11);
}

.hosting-page .hosting-card h3 {
  margin: 1.7rem 0 1rem;
  font-size: var(--text-h3);
  font-weight: 600;
  line-height: 1.12;
  text-align: left;
  letter-spacing: 0;
}

.hosting-page .hosting-card.simple h3,
.hosting-page .hosting-card.recommended h3,
.hosting-page .hosting-card.large h3 {
  color: var(--color-text);
}

.hosting-page .hosting-card ul {
  flex: 1 1 auto;
  margin: 0;
  padding: 0;
  list-style: none;
}

.hosting-page .hosting-card li {
  padding: 0.48rem 0;
  border-bottom: 1px solid #f0f2f1;
  color: var(--color-text);
  font-size: var(--text-sm);
  line-height: 1.45;
}

.hosting-page .hosting-card .card-footer {
  margin: 1rem 0 1.05rem;
  color: var(--color-muted);
  font-size: var(--text-sm);
  font-weight: 500;
  line-height: 1.5;
  text-align: left;
}

.hosting-page .hosting-card .price-ribbon {
  position: absolute;
  top: 1rem;
  right: 1rem;
  padding: 0.36rem 0.62rem;
  border-radius: 999px;
  background: #f4f6f5;
  color: var(--color-text);
  font-size: var(--text-xs);
  font-weight: 600;
  line-height: 1;
}

.hosting-page .hosting-card .price-ribbon::after,
.hosting-page .hosting-order-ribbon::before {
  content: none;
}

.hosting-page .hosting-card.simple .price-ribbon,
.hosting-page .hosting-card.simple .hosting-order-ribbon,
.hosting-page .hosting-card.recommended .price-ribbon,
.hosting-page .hosting-card.recommended .hosting-order-ribbon,
.hosting-page .hosting-card.large .price-ribbon,
.hosting-page .hosting-card.large .hosting-order-ribbon {
  background: #f4f6f5;
}

.hosting-page .hosting-card.simple {
  border-top: 4px solid #c96a62;
}

.hosting-page .hosting-card.recommended {
  border-top: 4px solid var(--color-red);
}

.hosting-page .hosting-card.large {
  border-top: 4px solid #6f211c;
}

.hosting-page .hosting-order-ribbon {
  position: static;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: flex-start;
  min-height: 2.35rem;
  margin-top: 0.55rem;
  padding: 0.58rem 0.86rem;
  border: 1px solid transparent;
  border-radius: 5px;
  background: var(--color-red);
  color: #fff;
  font-size: var(--text-sm);
  font-weight: 600;
  line-height: 1.1;
  text-align: center;
  text-decoration: none;
  box-shadow: 0 5px 12px rgba(159, 58, 50, 0.12);
  transition: background-color 0.15s ease, box-shadow 0.15s ease, transform 0.15s ease;
}

.hosting-page .hosting-order-ribbon::after {
  content: "→";
  margin-left: 0.45rem;
  font-weight: 700;
}

.hosting-page .hosting-order-ribbon:visited,
.hosting-page .hosting-order-ribbon:hover,
.hosting-page .hosting-order-ribbon:focus-visible {
  color: #fff;
  text-decoration: none;
  box-shadow: 0 7px 16px rgba(159, 58, 50, 0.18);
}

.hosting-page .hosting-order-ribbon:focus-visible {
  outline: 3px solid rgba(159, 58, 50, 0.22);
  outline-offset: 3px;
}

.hosting-page .hosting-card.simple .hosting-order-ribbon {
  background: var(--color-red);
  box-shadow: 0 5px 12px rgba(159, 58, 50, 0.13);
}

.hosting-page .hosting-card.recommended .hosting-order-ribbon {
  background: var(--color-red);
  box-shadow: 0 5px 12px rgba(159, 58, 50, 0.13);
}

.hosting-page .hosting-card.large .hosting-order-ribbon {
  background: #6f211c;
}


.hosting-page .hosting-card.simple,
.hosting-page .hosting-card.recommended,
.hosting-page .hosting-card.large {
  border-color: #e7e1dc;
}

.hosting-page .hosting-card.simple:hover,
.hosting-page .hosting-card.recommended:hover,
.hosting-page .hosting-card.large:hover {
  border-color: rgba(159, 58, 50, 0.32);
}

.hosting-page .hosting-card.simple .price-ribbon {
  border: 1px solid rgba(201, 106, 98, 0.18);
  background: #fbf1ef;
}

.hosting-page .hosting-card.recommended .price-ribbon {
  border: 1px solid rgba(159, 58, 50, 0.2);
  background: #f8e9e6;
}

.hosting-page .hosting-card.large .price-ribbon {
  border: 1px solid rgba(111, 33, 28, 0.2);
  background: #f3e1de;
}



/* Modern hosting plan cards: contain price badges and disable legacy ribbon remnants */
.hosting-page .hosting-card {
  overflow: hidden;
}

.hosting-page .hosting-card .price-ribbon {
  z-index: 2;
  right: 1rem;
  bottom: auto;
  left: auto;
  transform: none;
  white-space: nowrap;
}

.hosting-page .hosting-card .price-ribbon::before,
.hosting-page .hosting-card .price-ribbon::after,
.hosting-page .hosting-order-ribbon::before,
.hosting-page .hosting-order-ribbon::after {
  content: none;
  display: none;
  border: 0;
}

/* Hosting cards: red scale and subtle depth */
.hosting-page .hosting-card {
  border-color: #eadfdd;
  box-shadow: 0 12px 28px rgba(38, 31, 29, 0.075);
}

.hosting-page .hosting-card:hover {
  border-color: rgba(159, 58, 50, 0.34);
  box-shadow: 0 16px 34px rgba(38, 31, 29, 0.105);
}

.hosting-page .hosting-card.simple {
  border-top-color: #d8756d;
}

.hosting-page .hosting-card.recommended {
  border-top-color: var(--color-red);
}

.hosting-page .hosting-card.large {
  border-top-color: #6f211c;
}

.hosting-page .hosting-card.simple .price-ribbon {
  border-color: rgba(216, 117, 109, 0.26);
  background: #fbebe8;
}

.hosting-page .hosting-card.recommended .price-ribbon {
  border-color: rgba(159, 58, 50, 0.3);
  background: #f7e1dc;
}

.hosting-page .hosting-card.large .price-ribbon {
  border-color: rgba(111, 33, 28, 0.32);
  background: #efd6d2;
}

.hosting-page .hosting-card.simple .hosting-order-ribbon {
  background: #b65349;
}

.hosting-page .hosting-card.recommended .hosting-order-ribbon {
  background: var(--color-red);
}

.hosting-page .hosting-card.large .hosting-order-ribbon {
  background: #6f211c;
}

#content .hosting-page .hosting-order-ribbon,
#content .hosting-page .hosting-order-ribbon:visited,
#content .hosting-page .hosting-order-ribbon:hover,
#content .hosting-page .hosting-order-ribbon:focus-visible {
  color: #fff;
}


.hosting-section-links {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 0.75rem;
  max-width: none;
  margin-top: 2rem;
  padding-top: 1.15rem;
  border-top: 1px solid #edf0ef;
}

.hosting-section-link {
  display: inline-flex;
  flex: 1 1 0;
  align-items: center;
  justify-content: center;
  min-height: 2.65rem;
  padding: 0.55rem 0.9rem;
  border: 1px solid rgba(159, 58, 50, 0.18);
  border-radius: 999px;
  background:
    linear-gradient(135deg, rgba(159, 58, 50, 0.08), rgba(201, 106, 98, 0.06) 58%, rgba(111, 33, 28, 0.05)),
    #fff;
  color: var(--color-red);
  font-size: var(--text-sm);
  font-weight: 700;
  line-height: 1.25;
  text-align: center;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 6px 18px rgba(28, 42, 44, 0.06);
  transition: border-color 0.16s ease, box-shadow 0.16s ease, transform 0.16s ease;
}


#content .hosting-page .hosting-section-link,
#content .hosting-page .hosting-section-link:visited,
#content .hosting-page .hosting-section-link:hover,
#content .hosting-page .hosting-section-link:focus-visible {
  color: var(--color-red);
}

.hosting-section-link::after {
  content: "↓";
  margin-left: 0.55rem;
  color: var(--color-red);
  font-size: 0.95em;
  line-height: 1;
}

.hosting-section-link:hover,
.hosting-section-link:focus-visible {
  border-color: rgba(159, 58, 50, 0.36);
  color: var(--color-red);
  text-decoration: none;
  box-shadow: 0 10px 24px rgba(28, 42, 44, 0.1);
  transform: translateY(-1px);
}

@media (max-width: 1100px) {
  .hosting-section-links {
    flex-wrap: wrap;
  }

  .hosting-section-link {
    flex: 1 1 260px;
    white-space: normal;
  }
}


.hosting-feature-block {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
  gap: 4rem;
  align-items: center;
  padding: 3.1rem 0;
}

.hosting-feature-block + .hosting-feature-block {
  border-top: 1px solid #edf0ef;
}

.hosting-feature-block.is-reversed .hosting-feature-text {
  order: 2;
}

.hosting-feature-block.is-reversed .hosting-feature-visual {
  order: 1;
}

.hosting-feature-eyebrow {
  margin: 0 0 0.7rem;
  color: var(--color-red);
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hosting-feature-text h2 {
  margin: 0 0 1rem;
  font-size: var(--text-h1);
  font-weight: 600;
  line-height: 1.1;
}

.hosting-feature-text p {
  margin: 0 0 1rem;
  color: var(--color-text);
  font-size: var(--text-base);
  line-height: 1.74;
}

.hosting-feature-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 330px;
  padding: 0.6rem;
  border: 1px solid #e2ddcf;
  border-radius: 8px;
  background: #f7f3e8;
  box-sizing: border-box;
  overflow: hidden;
}

.hosting-feature-visual img {
  display: block;
  width: 100%;
  max-width: 760px;
  height: auto;
  max-height: 430px;
  object-fit: contain;
}

.hosting-order-cta {
  text-align: center;
  background: #fafbfa;
}

.hosting-order-cta h2 {
  margin: 0 0 0.8rem;
  font-size: var(--text-h2);
  font-weight: 600;
}

.hosting-order-cta p {
  max-width: 620px;
  margin: 0 auto 1.4rem;
  color: var(--color-muted);
  font-size: var(--text-base);
  line-height: 1.65;
}

.hosting-order-cta .hosting-cta-button,
#content .hosting-order-cta .hosting-cta-button,
#content .hosting-order-cta .hosting-cta-button:visited {
  background: transparent;
  color: var(--color-red);
  border-color: rgba(159, 58, 50, 0.28);
}

.hosting-order-cta .hosting-cta-button:hover,
.hosting-order-cta .hosting-cta-button:focus-visible,
#content .hosting-order-cta .hosting-cta-button:hover,
#content .hosting-order-cta .hosting-cta-button:focus-visible {
  background: rgba(159, 58, 50, 0.07);
  border-color: rgba(159, 58, 50, 0.45);
  color: #6f211c;
  text-decoration: none;
}

@media (max-width: 900px) {
  .hosting-page-hero {
    padding: 3.2rem 0 2.2rem;
  }

  .hosting-page h1 {
    font-size: 2.18rem;
  }

  .hosting-page .hosting-plan-cards,
  .hosting-feature-block {
    grid-template-columns: 1fr;
  }

  .hosting-feature-block,
  .hosting-feature-block.is-reversed .hosting-feature-text,
  .hosting-feature-block.is-reversed .hosting-feature-visual {
    order: initial;
  }

  .hosting-feature-block {
    gap: 1.8rem;
    padding: 2.4rem 0;
  }

  .hosting-feature-visual {
    min-height: 0;
  }
}

@media (max-width: 620px) {
  .hosting-page-inner {
    padding-left: 18px;
    padding-right: 18px;
  }

  .hosting-section-links {
    align-items: stretch;
    flex-direction: column;
    gap: 0.6rem;
  }

  .hosting-section-link {
    justify-content: space-between;
    width: 100%;
  }

  .hosting-feature-text h2 {
    font-size: 1.9rem;
  }
}

.hosting-why-section {
  background: #fafbfa;
}

.hosting-why-section h2 {
  max-width: 780px;
  margin: 0 0 0.75rem;
  font-size: var(--text-h1);
  font-weight: 600;
  line-height: 1.12;
}

.hosting-why-intro {
  max-width: 720px;
  margin: 0 0 1.8rem;
  color: var(--color-muted);
  font-size: var(--text-lg);
  line-height: 1.6;
}

.hosting-why-list {
  display: grid;
  grid-auto-flow: column;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: repeat(5, auto);
  gap: 0.85rem;
}

.hosting-why-item {
  border: 1px solid #e2e6e4;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 8px 22px rgba(28, 42, 44, 0.04);
}

.hosting-why-item summary {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 0.85rem;
  align-items: center;
  padding: 1rem 1.1rem;
  color: var(--color-text);
  font-weight: 700;
  cursor: pointer;
  list-style: none;
}

.hosting-why-item summary::-webkit-details-marker {
  display: none;
}

.hosting-why-item summary::after {
  content: "+";
  justify-self: end;
  grid-column: 3;
  color: var(--color-red);
  font-size: 1.25rem;
  line-height: 1;
}

.hosting-why-item[open] summary::after {
  content: "−";
}

.hosting-why-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.1rem;
  height: 2.1rem;
  border-radius: 999px;
  background: rgba(159, 58, 50, 0.1);
  color: var(--color-red);
  font-size: var(--text-xs);
  font-weight: 800;
}

.hosting-why-item p {
  margin: 0;
  padding: 0 1.1rem 1.15rem 4.05rem;
  color: var(--color-muted);
  font-size: var(--text-base);
  line-height: 1.65;
}

@media (max-width: 900px) {
  .hosting-why-list {
    grid-auto-flow: row;
    grid-template-columns: 1fr;
    grid-template-rows: none;
  }
}

@media (max-width: 620px) {
  .hosting-why-item p {
    padding-left: 1.1rem;
  }
}


/* ===== HOSTING ORDER OVERHAUL ===== */

.hosting-order-page {
  max-width: none;
  margin: 0;
  color: var(--color-text);
  background: #fff;
}

.hosting-order-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
  box-sizing: border-box;
}

.hosting-order-hero {
  padding: 3.4rem 0 2.4rem;
  border-bottom: 1px solid #e6e8e7;
  background:
    linear-gradient(115deg, rgba(159,58,50,0.08), rgba(201,106,98,0.06) 55%, rgba(111,33,28,0.05)),
    #fff;
}

.hosting-order-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  gap: 3rem;
  align-items: end;
}

.hosting-order-page h1 {
  max-width: 780px;
  margin: 0 0 0.9rem;
  font-size: var(--text-hero);
  font-weight: 700;
  line-height: 1.08;
}

.hosting-order-intro {
  max-width: 760px;
  margin: 0;
  color: var(--color-muted);
  font-size: var(--text-lead);
  line-height: 1.62;
}

.hosting-order-note {
  padding: 1rem 1.1rem;
  border: 1px solid rgba(29,92,107,0.20);
  border-radius: 8px;
  background: rgba(255,255,255,0.72);
  color: var(--color-text);
  font-size: var(--text-sm);
  line-height: 1.55;
}

.hosting-order-note strong,
.hosting-order-note span {
  display: block;
}

.hosting-order-note strong {
  margin-bottom: 0.25rem;
  font-weight: 600;
}

.hosting-order-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  gap: 1.4rem;
  align-items: start;
  padding-top: 3rem;
  padding-bottom: 4rem;
}

.hosting-order-form {
  min-width: 0;
}


.hosting-order-switch {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1rem;
  align-items: center;
  margin: 0 0 1.2rem;
  padding: 1rem 1.1rem;
  border: 1px solid rgba(29,92,107,0.18);
  border-radius: 8px;
  background: #f7faf9;
}

.hosting-order-switch h2 {
  margin: 0 0 0.2rem;
  font-size: var(--text-base);
  line-height: 1.25;
}

.hosting-order-switch p {
  margin: 0;
  color: var(--color-muted);
  font-size: var(--text-sm);
  line-height: 1.45;
}

.hosting-order-switch-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.55rem;
  padding: 0.65rem 0.9rem;
  border-radius: 5px;
  background: var(--color-blue);
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
}

.hosting-order-switch-link:visited {
  color: #fff;
}


.hosting-registry-terms {
  margin-top: 0.85rem;
  padding: 0.85rem 0.95rem;
  border: 1px solid #e4e9e6;
  border-radius: 6px;
  background: #fff;
}

.hosting-registry-terms h3 {
  margin: 0 0 0.25rem;
  font-size: var(--text-base);
  line-height: 1.25;
}

.hosting-registry-terms p {
  margin: 0 0 0.55rem;
  color: var(--color-muted);
  font-size: var(--text-xs);
  line-height: 1.45;
}

.hosting-registry-terms ul {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem 0.7rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.hosting-registry-terms a {
  color: var(--color-blue);
  font-weight: 600;
}

.hosting-privacy-note strong {
  color: var(--color-text);
}

.hosting-privacy-note {
  margin: 0.85rem 0 0;
  color: var(--color-muted);
  font-size: var(--text-xs);
  line-height: 1.45;
}

.hosting-privacy-note a {
  color: var(--color-blue);
  font-weight: 600;
}

.hosting-form-card {
  margin: 0 0 1.2rem;
  padding: 1.35rem;
  border: 1px solid #e1e5e3;
  border-radius: 8px;
  background: #fff;
}

.hosting-message-card {
  grid-column: 1 / -1;
}

.hosting-form-card-header {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 0.9rem;
  align-items: start;
  margin-bottom: 1.15rem;
}

.hosting-form-step {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  background: var(--color-blue);
  color: #fff;
  font-size: var(--text-sm);
  font-weight: 600;
  line-height: 1;
}

.hosting-form-card h2 {
  margin: 0 0 0.25rem;
  font-size: var(--text-h3);
  font-weight: 600;
  line-height: 1.18;
}

.hosting-form-card-header p {
  margin: 0;
  color: var(--color-muted);
  font-size: var(--text-sm);
  line-height: 1.5;
}

.hosting-field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem 1.1rem;
}

.hosting-field-row,
.hosting-conditional-row,
.hosting-conditional-block {
  min-width: 0;
}

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

.hosting-required-note {
  margin: -0.35rem 0 1rem;
  color: var(--color-muted);
  font-size: var(--text-xs);
  line-height: 1.4;
}

.hosting-required-note span,
.hosting-field-row:has(:required) > label::after,
.hosting-field-row.is-required > label::after {
  color: var(--color-red);
  font-weight: 700;
}

.hosting-field-row:has(:required) > label::after,
.hosting-field-row.is-required > label::after {
  content: " *";
}

.hosting-order-form label {
  display: block;
  margin: 0 0 0.38rem;
  color: var(--color-text);
  font-size: var(--text-sm);
  font-weight: 600;
  line-height: 1.35;
}

.hosting-order-form input,
.hosting-order-form select,
.hosting-order-form textarea {
  width: 100%;
  min-height: 2.78rem;
  padding: 0.72rem 0.78rem;
  border: 1px solid #cfd6d3;
  border-radius: 5px;
  background: #fff;
  color: var(--color-text);
  font: 400 var(--text-base)/1.35 var(--font-sans);
  box-sizing: border-box;
}

.hosting-order-form textarea {
  min-height: 9rem;
  resize: vertical;
}

.hosting-message-row textarea {
  min-height: 9rem;
}

.hosting-order-form input:focus,
.hosting-order-form select:focus,
.hosting-order-form textarea:focus {
  outline: 2px solid rgba(29,92,107,0.16);
  border-color: var(--color-blue);
}

.hosting-checkbox-card {
  display: inline-flex !important;
  align-items: center;
  gap: 0.65rem;
  margin: 0;
  padding: 0.72rem 0.82rem;
  border: 1px solid #e1e5e3;
  border-radius: 6px;
  background: #fafbfa;
  color: var(--color-text);
  font-weight: 500 !important;
}

.hosting-checkbox-card input {
  width: auto;
  min-height: 0;
  padding: 0;
}

.hosting-agreements-list {
  display: grid;
  gap: 0.7rem;
  max-width: 760px;
}

.hosting-agreements-list .hosting-consent-card {
  display: grid !important;
  grid-template-columns: 1.15rem minmax(0, 1fr);
  align-items: start;
  width: 100%;
  margin: 0;
  padding: 0.85rem 0.95rem;
  box-sizing: border-box;
}

.hosting-agreements-list .hosting-consent-card input {
  margin-top: 0.18rem;
}

.hosting-agreements-list .hosting-consent-card span {
  display: block;
  min-width: 0;
  line-height: 1.45;
}

.hosting-toggle-card {
  margin-top: 1rem;
}

.hosting-domain-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: stretch;
  margin-top: 1rem;
}

.hosting-domain-actions .hosting-toggle-card {
  margin-top: 0;
}

.hosting-domain-only-link,
.hosting-domain-only-link:visited {
  background: var(--color-green);
  border-color: var(--color-green);
  color: #fff;
  text-decoration: none;
}

.hosting-domain-only-link:hover,
.hosting-domain-only-link:focus {
  background: #526600;
  border-color: #526600;
  color: #fff;
}

#content .hosting-order-form .hosting-domain-only-link,
#content .hosting-order-form .hosting-domain-only-link:visited {
  background: var(--color-green);
  border-color: var(--color-green);
  color: #fff;
}

#content .hosting-order-form .hosting-domain-only-link:hover,
#content .hosting-order-form .hosting-domain-only-link:focus {
  background: #526600;
  border-color: #526600;
  color: #fff;
}

.hosting-consent-card:has(input:required) span::after {
  content: " *";
  color: var(--color-red);
  font-weight: 700;
}

.hosting-conditional-row,
.hosting-conditional-block {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid #edf0ef;
}

.hosting-conditional-block[hidden],
.hosting-conditional-card[hidden] {
  display: none;
}

.hosting-conditional-block.is-visible {
  display: grid;
}

.hosting-conditional-card.is-visible {
  display: block;
}

.field-help {
  margin: 0.35rem 0 0;
  color: var(--color-muted);
  font-size: var(--text-xs);
  line-height: 1.45;
}




/* Hosting order overrides for legacy #content form rules */
#content .hosting-order-form label,
#content .hosting-order-form .hosting-checkbox-card {
  float: none;
  width: auto;
  text-align: left;
  margin-right: 0;
}

#content .hosting-order-form input,
#content .hosting-order-form select,
#content .hosting-order-form textarea {
  width: 100%;
  max-width: 100%;
}

#content .hosting-order-form .hosting-checkbox-card input,
#content .hosting-order-form input[type="checkbox"] {
  width: auto;
}

#content .hosting-message-row,
#content .hosting-message-row textarea {
  display: block;
  width: 100%;
  max-width: 100%;
}

#content .hosting-agreements-list .hosting-consent-card {
  display: grid !important;
  grid-template-columns: 1.15rem minmax(0, 1fr);
  width: 100%;
  max-width: 100%;
}

#content .hosting-agreements-list .hosting-consent-card span {
  display: block;
  width: auto;
  min-width: 0;
}

.hosting-order-summary {
  position: sticky;
  top: 1rem;
  margin: 0;
  padding: 1.25rem;
  border: 1px solid #dfe5e2;
  border-radius: 8px;
  background: #fbfcfb;
  box-shadow: none;
}

.hosting-order-summary .summary-kicker {
  margin: 0 0 0.45rem;
  color: var(--color-blue);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hosting-order-summary h2 {
  margin: 0 0 1rem;
  font-size: var(--text-h3);
  font-weight: 600;
}

.hosting-order-summary dl {
  margin: 0;
}

.hosting-order-summary dl div {
  padding: 0.82rem 0;
  border-top: 1px solid #e8ecea;
}

.hosting-order-summary dt {
  margin: 0 0 0.25rem;
  color: var(--color-muted);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hosting-order-summary dd {
  margin: 0;
  color: var(--color-text);
  font-size: var(--text-base);
  font-weight: 600;
  line-height: 1.35;
}

.hosting-order-summary .order-summary-note {
  margin: 1rem 0 0;
  color: var(--color-muted);
  font-size: var(--text-sm);
  line-height: 1.5;
}

.hosting-summary-next {
  margin-top: 1.1rem;
  padding-top: 1rem;
  border-top: 1px solid #e8ecea;
}

.hosting-summary-next h3 {
  margin: 0 0 0.55rem;
  font-size: var(--text-base);
  font-weight: 600;
}

.hosting-summary-next ol {
  margin: 0;
  padding-left: 1.2rem;
}

.hosting-summary-next li {
  margin-bottom: 0.35rem;
  color: var(--color-muted);
  font-size: var(--text-sm);
  line-height: 1.45;
}

.hosting-form-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1.5rem;
}

.hosting-form-actions button {
  padding: 0.82rem 1.1rem;
  border: 0;
  border-radius: 4px;
  background: var(--color-red);
  color: #fff;
  font-size: var(--text-base);
  font-weight: 600;
  line-height: 1;
  cursor: pointer;
}

.hosting-form-actions p {
  margin: 0;
  color: var(--color-muted);
  font-size: var(--text-sm);
  line-height: 1.45;
}

.domain-order-page .hosting-form-actions button {
  background: var(--color-green);
}

.domain-order-page .hosting-form-actions button:hover,
.domain-order-page .hosting-form-actions button:focus-visible {
  background: #526600;
}

@media (max-width: 980px) {
  .hosting-order-hero-grid,
  .hosting-order-layout {
    grid-template-columns: 1fr;
  }

  

.hosting-order-summary {
    position: static;
    order: -1;
  }
}

@media (max-width: 680px) {
  .hosting-order-inner {
    padding-left: 18px;
    padding-right: 18px;
  }

  .hosting-order-page h1 {
    font-size: 2.18rem;
  }

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

  .hosting-form-actions {
    display: block;
  }


  .hosting-order-switch {
    grid-template-columns: 1fr;
  }

  .hosting-order-switch-link {
    width: 100%;
    box-sizing: border-box;
  }

  .hosting-domain-actions {
    display: grid;
  }

  .hosting-form-actions button {
    width: 100%;
  }

  .hosting-form-actions p {
    margin-top: 0.8rem;
  }
}

/* ===== DOMAINS SECTION ===== */
.domains-page-hero,
.domain-order-hero {
  background:
    linear-gradient(115deg, rgba(29,92,107,0.07), rgba(99,120,0,0.05) 52%, rgba(159,58,50,0.06)),
    #fff;
}

.domains-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.4rem;
}

.domains-service-cards {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.domain-service-card p {
  margin: 0.45rem 0 0.8rem;
  color: var(--color-muted);
  font-size: var(--text-sm);
  line-height: 1.5;
}

.domain-service-card ul {
  margin-top: 0.7rem;
}

.domains-feature-section .hosting-feature-visual img {
  width: 100%;
  max-height: 230px;
  object-fit: cover;
  opacity: 0.82;
  filter: grayscale(0.15);
}

.domain-order-page .hosting-order-summary dl div:first-child {
  border-top: 0;
}

.domain-order-page .hosting-registry-terms {
  max-width: 760px;
}

@media (max-width: 860px) {
  .domains-service-cards {
    grid-template-columns: 1fr;
  }
}


/* Domain order multi-domain workflow */
.domain-items {
  display: grid;
  gap: 1rem;
}

.domain-item {
  padding: 1rem;
  border: 1px solid #e4e9e6;
  border-radius: 8px;
  background: #fbfcfb;
}

.domain-item-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.9rem;
}

.domain-item-header h3 {
  margin: 0;
  font-size: var(--text-base);
  font-weight: 600;
}

.domain-remove-button,
.domain-add-button {
  cursor: pointer;
}

.domain-remove-button {
  border: 0;
  background: transparent;
  color: var(--color-red);
  font: 600 var(--text-sm)/1.2 var(--font-sans);
}

.domain-nameserver-choice {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

/* News technical diagrams */
.network-diagram {
  margin: 2rem 0 1.3rem;
  padding: 1.2rem;
  overflow-x: auto;
  border: 1px solid rgba(70, 92, 88, 0.16);
  border-radius: 8px;
  background: #f4f1e8;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.55);
}

.network-diagram pre {
  margin: 0;
  color: #26302f;
  background: transparent;
  font-family: "IBM Plex Mono", "SFMono-Regular", Consolas, monospace;
  font-size: 0.92rem;
  line-height: 1.35;
  white-space: pre;
}

@media (max-width: 760px) {
  .network-diagram {
    margin-inline: -0.25rem;
    padding: 0.9rem;
  }

  .network-diagram pre {
    font-size: 0.78rem;
  }
}

/* Header image optimization */
.site-logo-modern picture {
  display: block;
  line-height: 0;
}


/* Contact page */
.contact-page .hosting-order-inner {
  max-width: 1180px;
}

.contact-hero-grid {
  align-items: stretch;
}

.contact-quick-card {
  align-self: end;
  padding: 1.1rem 1.2rem;
  border: 1px solid #e1e5e3;
  border-radius: 8px;
  background: #fbfcfb;
}

.contact-quick-card h2 {
  margin: 0 0 0.4rem;
  font-size: var(--text-base);
  line-height: 1.25;
}

.contact-quick-card p {
  margin: 0 0 0.65rem;
  color: var(--color-muted);
  font-size: var(--text-sm);
  line-height: 1.45;
}

.contact-quick-card a,
.contact-summary a {
  color: var(--color-blue);
  font-weight: 600;
}

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

.contact-honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.contact-checkbox-card {
  width: 100%;
  box-sizing: border-box;
}

.contact-summary address {
  margin: 0 0 1rem;
  color: var(--color-text);
  font-style: normal;
  font-size: var(--text-sm);
  line-height: 1.55;
}

.contact-summary dd a {
  overflow-wrap: anywhere;
}

@media (max-width: 980px) {
  .contact-order-layout {
    grid-template-columns: 1fr;
  }

  .contact-summary {
    position: static;
    order: -1;
  }
}


.information-latest-card {
  margin: 0 0 2rem;
  padding: 1.15rem 1.25rem;
  border: 1px solid #e1e5e3;
  border-radius: 8px;
  background: #fbfcfb;
}

.information-latest-card h2 {
  margin: 0 0 0.25rem;
  font-size: var(--text-h3);
  line-height: 1.2;
}

.information-latest-card h2 a {
  color: var(--color-text);
  text-decoration: none;
}

.information-latest-meta {
  margin: 0 0 0.75rem !important;
  color: var(--color-muted);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.information-read-more,
.information-rss-link {
  display: inline-flex;
  align-items: center;
  margin-right: 0.65rem;
  color: var(--color-blue);
  font-weight: 600;
  text-decoration: none;
}

.information-rss-link {
  color: var(--color-muted);
}


.news-card-list {
  display: grid;
  gap: 1rem;
  margin: 1.5rem 0 0;
}

.news-card {
  padding: 1.1rem 1.2rem;
  border: 1px solid #e1e5e3;
  border-radius: 8px;
  background: #fff;
}

.news-card-date {
  margin: 0 0 0.4rem !important;
  color: var(--color-muted);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.news-card h2 {
  margin: 0 0 0.55rem;
  font-size: var(--text-h3);
  line-height: 1.2;
}

.news-card h2 a {
  color: var(--color-text);
  text-decoration: none;
}

.news-card p {
  margin-bottom: 0.8rem;
}

/* ===== GLOBAL READING RHYTHM ===== */
/* Shared prose layer for long-form Markdown pages: FAQ, news, Information and About pages. */
:root {
  --reading-width: 74ch;
  --reading-wide: 1180px;
  --space-heading-before: 2.6rem;
  --space-heading-after: 0.85rem;
  --space-paragraph: 1.05rem;
}

#content .page-content,
#content .single-content {
  max-width: min(860px, calc(100% - 48px));
  padding-top: clamp(2.2rem, 4vw, 3.4rem);
  padding-bottom: clamp(3.2rem, 5vw, 4.6rem);
  color: var(--color-text);
}

#content .information-main.page-content {
  max-width: min(840px, 100%);
  padding: 0;
}

#content .page-content > :first-child,
#content .single-content > :first-child,
#content .information-main > :first-child {
  margin-top: 0;
}

#content .page-content h1,
#content .single-content h1,
#content .information-main h1 {
  max-width: 14em;
  margin: 0 0 1.35rem;
  color: var(--heading-color);
  font-size: clamp(2rem, 2vw + 1.2rem, var(--text-h1));
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: 0;
}

#content .page-content h2,
#content .single-content h2,
#content .information-main h2 {
  max-width: 18em;
  margin: var(--space-heading-before) 0 var(--space-heading-after);
  color: var(--heading-color);
  font-size: var(--text-h2);
  font-weight: 600;
  line-height: 1.16;
  letter-spacing: 0;
}

#content .page-content h3,
#content .single-content h3,
#content .information-main h3 {
  margin: 2rem 0 0.65rem;
  color: var(--heading-color);
  font-size: var(--text-h3);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0;
}

#content .page-content h4,
#content .single-content h4,
#content .information-main h4 {
  margin: 1.6rem 0 0.55rem;
  color: var(--heading-color);
  font-size: var(--text-h4);
  font-weight: 600;
  line-height: 1.25;
}

#content .page-content h2 + h3,
#content .single-content h2 + h3,
#content .information-main h2 + h3 {
  margin-top: 1.15rem;
}

#content .page-content p,
#content .single-content p,
#content .information-main p {
  max-width: var(--reading-width);
  margin: 0 0 var(--space-paragraph);
  padding: 0;
  color: var(--color-text);
  font-size: var(--text-base);
  line-height: 1.72;
}

#content .page-content p + ul,
#content .page-content p + ol,
#content .single-content p + ul,
#content .single-content p + ol,
#content .information-main p + ul,
#content .information-main p + ol {
  margin-top: -0.25rem;
}

#content .page-content ul,
#content .page-content ol,
#content .single-content ul,
#content .single-content ol,
#content .information-main ul,
#content .information-main ol {
  max-width: var(--reading-width);
  margin: 0 0 1.25rem;
  padding-left: 1.25rem;
}

#content .page-content li,
#content .single-content li,
#content .information-main li {
  margin: 0.28rem 0;
  padding: 0;
  line-height: 1.66;
}

#content .page-content li > p,
#content .single-content li > p,
#content .information-main li > p {
  margin-bottom: 0.35rem;
}

#content .page-content blockquote,
#content .single-content blockquote,
#content .information-main blockquote {
  max-width: var(--reading-width);
  margin: 2rem 0;
  padding: 0.15rem 0 0.15rem 1.15rem;
  border-left: 3px solid rgba(29, 92, 107, 0.35);
  color: var(--color-muted);
}

#content .page-content blockquote p,
#content .single-content blockquote p,
#content .information-main blockquote p {
  color: inherit;
  font-size: var(--text-lead);
  line-height: 1.62;
}

#content .page-content hr,
#content .single-content hr,
#content .information-main hr {
  max-width: var(--reading-width);
  margin: 2.8rem 0;
  border: 0;
  border-top: 1px solid var(--line-color);
}

#content .page-content table,
#content .single-content table,
#content .information-main table {
  width: 100%;
  max-width: var(--reading-width);
  margin: 1.5rem 0 2rem;
  border-collapse: collapse;
  font-size: var(--text-sm);
}

#content .page-content th,
#content .page-content td,
#content .single-content th,
#content .single-content td,
#content .information-main th,
#content .information-main td {
  padding: 0.62rem 0.7rem;
  border-bottom: 1px solid var(--line-color);
  text-align: left;
  vertical-align: top;
}

#content .page-content pre,
#content .single-content pre,
#content .information-main pre {
  max-width: var(--reading-width);
  margin: 1.5rem 0 2rem;
  padding: 1rem;
  overflow-x: auto;
  border: 1px solid rgba(70, 92, 88, 0.16);
  border-radius: 8px;
  background: #f4f1e8;
  color: #26302f;
  line-height: 1.5;
}

#content .page-content code,
#content .single-content code,
#content .information-main code {
  font-family: var(--font-mono);
  font-size: 0.94em;
}

#content .information-main .section-list,
#content .information-main .news-card-list,
#content .information-main .information-latest-card,
#content .information-main .network-diagram {
  max-width: none;
}

@media (max-width: 760px) {
  #content .page-content,
  #content .single-content {
    max-width: calc(100% - 36px);
  }

  #content .page-content h1,
  #content .single-content h1,
  #content .information-main h1 {
    font-size: 2rem;
  }

  #content .page-content h2,
  #content .single-content h2,
  #content .information-main h2 {
    margin-top: 2.1rem;
    font-size: 1.42rem;
  }
}

/* Documentation landing image */
.documentation-hero-visual {
  max-width: min(360px, 100%);
  margin: 0 0 1.6rem 1.8rem;
  float: right;
}

.documentation-hero-visual picture,
.documentation-hero-visual img {
  display: block;
}

.documentation-hero-visual img {
  width: 100%;
  height: auto;
  border: 1px solid #e2ddcf;
  border-radius: 8px;
  background: #f7f3e8;
  box-shadow: 0 12px 24px rgba(31, 37, 35, 0.08);
}

@media (max-width: 760px) {
  .documentation-hero-visual {
    float: none;
    max-width: 100%;
    margin: 0 0 1.4rem;
  }
}

/* Domains feature illustration tuning */
.domains-feature-section .hosting-feature-visual {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(130px, 0.36fr);
  gap: 1.1rem;
  min-height: 340px;
  padding: 1.1rem;
  align-items: center;
}

.domains-feature-section .hosting-feature-visual img {
  width: 100%;
  max-height: 310px;
  object-fit: contain;
  opacity: 0.9;
  filter: grayscale(0.08);
}

.domains-feature-section .hosting-feature-visual .hosting-feature-points {
  margin: 0;
  padding-left: 1.05rem;
}

.domains-feature-section .hosting-feature-visual .hosting-feature-points li {
  margin: 0.45rem 0;
  line-height: 1.45;
}

@media (max-width: 760px) {
  .domains-feature-section .hosting-feature-visual {
    grid-template-columns: 1fr;
  }
}

/* Price list data snapshots */
.price-ribbon span {
  display: block;
  margin-top: 0.18rem;
  font-size: 0.64rem;
  font-weight: 600;
  line-height: 1.1;
  opacity: 0.86;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.price-list-updated {
  margin: 1rem 0 0;
  color: var(--color-muted);
  font-size: var(--text-xs);
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.domain-price-list {
  margin: 2rem 0 0;
  padding: 1.15rem 1.2rem;
  border: 1px solid #e1e5e3;
  border-radius: 8px;
  background: #fbfcfb;
}

.domain-price-list p {
  max-width: 760px;
  margin: 0 0 1rem;
  color: var(--color-muted);
  line-height: 1.55;
}

.domain-price-list-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 0.7rem;
}

.domain-price-item {
  padding: 0.75rem 0.85rem;
  border: 1px solid #e5e9e7;
  border-radius: 6px;
  background: #fff;
}

.domain-price-item strong,
.domain-price-item span {
  display: block;
}

.domain-price-item strong {
  margin-bottom: 0.22rem;
  color: var(--color-text);
  font-size: var(--text-base);
}

.domain-price-item span {
  color: var(--color-muted);
  font-size: var(--text-sm);
  line-height: 1.35;
}

/* Glossary status markers */
.glossary-term-obsolete {
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.glossary-status-obsolete {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 999px;
  background: #a6453b;
  color: #fff;
  font-size: 0.9rem;
  font-weight: 800;
  line-height: 1;
}

.glossary-legacy-note {
  margin: 0.35rem 0 1rem;
  padding: 0.7rem 0.85rem;
  border-left: 3px solid #a6453b;
  background: #f8f3e9;
  color: var(--color-muted);
  font-size: var(--text-sm);
  line-height: 1.45;
}

.glossary-alpha-index {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin: 1.2rem 0 2rem;
  padding: 0.75rem 0;
  border-top: 1px solid #e4e4df;
  border-bottom: 1px solid #e4e4df;
}

.glossary-alpha-index a,
.glossary-alpha-index span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 1.8rem;
  height: 1.8rem;
  border-radius: 999px;
  font-size: var(--text-sm);
  font-weight: 700;
  text-decoration: none;
}

.glossary-alpha-index a {
  background: #f8f3e9;
  color: var(--color-link);
}

.glossary-alpha-index a:hover,
.glossary-alpha-index a:focus-visible {
  background: var(--color-link);
  color: #fff;
}

.glossary-alpha-index span {
  color: #b9b9b0;
}

.information-nav-group.is-direct {
  background: #fff;
}

.information-nav-direct {
  display: block;
  padding: 0.85rem 1rem;
  color: var(--color-text);
  font-weight: 700;
  letter-spacing: 0.02em;
  text-decoration: none;
}

.information-nav-direct:hover,
.information-nav-direct:focus-visible,
.information-nav-direct.is-active {
  color: var(--color-blue);
  text-decoration: none;
}

.hosting-plan-heading {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  min-height: 3.2rem;
  margin: 0.25rem 0 1rem;
}

.hosting-plan-heading h3 {
  margin: 0;
}

.hosting-plan-icon {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.85rem;
  height: 2.85rem;
}

.hosting-plan-icon picture,
.hosting-plan-icon img {
  display: block;
}

.hosting-plan-icon img {
  width: auto;
  max-width: 2.55rem;
  max-height: 2.55rem;
  object-fit: contain;
}

.hosting-card.simple .hosting-plan-icon img {
  max-width: 2.6rem;
  max-height: 2.35rem;
}

.hosting-card.large .hosting-plan-icon img {
  max-width: 2.75rem;
  max-height: 2.75rem;
}


/* FAQ navigation and reading aids */
#content .faq-category-grid {
  max-width: none;
  margin-top: 1.2rem;
}

#content .information-main h2#questions + ul,
#content .information-main h2#vragen + ul,
#content .information-main h2#fragen + ul {
  max-width: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 0.55rem;
  margin: 1rem 0 2.2rem;
  padding: 0;
  list-style: none;
}

#content .information-main h2#questions + ul li,
#content .information-main h2#vragen + ul li,
#content .information-main h2#fragen + ul li {
  margin: 0;
}

#content .information-main h2#questions + ul a,
#content .information-main h2#vragen + ul a,
#content .information-main h2#fragen + ul a {
  display: block;
  min-height: 100%;
  padding: 0.72rem 0.85rem;
  border: 1px solid rgba(37, 47, 45, 0.12);
  border-radius: 6px;
  background: #fbfaf6;
  color: var(--color-blue);
  text-decoration: none;
  line-height: 1.35;
}

#content .information-main h2#questions + ul a:hover,
#content .information-main h2#vragen + ul a:hover,
#content .information-main h2#fragen + ul a:hover {
  border-color: rgba(29, 92, 107, 0.28);
  background: #f4f1e8;
}

.information-sidebar {
  max-height: calc(100vh - 4rem);
  overflow: auto;
  padding-right: 0.25rem;
}

.information-nav-panel {
  max-height: 68vh;
  overflow: auto;
}

.documentation-status-note {
  max-width: var(--reading-width);
  margin: 1.5rem 0 2rem;
  padding: 1rem 1.1rem;
  border: 1px solid rgba(29, 92, 107, 0.24);
  border-radius: 8px;
  background: #f4f1e8;
}

.documentation-status-note h2,
#content .information-main .documentation-status-note h2 {
  margin: 0 0 0.55rem;
  font-size: var(--text-h3);
}

.documentation-status-note ul,
#content .information-main .documentation-status-note ul {
  margin-bottom: 0;
}


.faq-view-toggle {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin: 1.3rem 0 1rem;
  padding: 0.25rem;
  border: 1px solid rgba(37, 47, 45, 0.14);
  border-radius: 999px;
  background: #fbfaf6;
}

.faq-view-toggle button {
  appearance: none;
  border: 0;
  border-radius: 999px;
  padding: 0.52rem 0.9rem;
  background: transparent;
  color: var(--color-muted);
  font: inherit;
  font-size: var(--text-sm);
  font-weight: 700;
  cursor: pointer;
}

.faq-view-toggle button.is-active {
  background: var(--color-blue);
  color: #fff;
}

.faq-view-ready .faq-view-panel:not(.is-active) {
  display: none;
}

.faq-view-panel {
  margin-top: 0.6rem;
}

.faq-top-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 0.75rem;
  margin: 1rem 0 2.4rem;
}

.faq-top-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.2rem 0.75rem;
  min-height: 100%;
  padding: 0.9rem 1rem;
  border: 1px solid rgba(37, 47, 45, 0.13);
  border-radius: 8px;
  background: #fbfaf6;
  color: var(--color-text);
  text-decoration: none;
}

.faq-top-card:hover,
.faq-top-card:focus-visible {
  border-color: rgba(29, 92, 107, 0.32);
  background: #f4f1e8;
  text-decoration: none;
}

.faq-top-card span {
  grid-row: span 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.9rem;
  height: 1.9rem;
  border-radius: 999px;
  background: var(--color-blue);
  color: #fff;
  font-size: var(--text-sm);
  font-weight: 800;
}

.faq-top-card strong,
.faq-top-card em {
  display: block;
}

.faq-top-card strong {
  color: var(--color-text);
  font-size: var(--text-base);
  line-height: 1.25;
}

.faq-top-card em {
  color: var(--color-muted);
  font-size: var(--text-sm);
  font-style: normal;
  line-height: 1.4;
}

@media (max-width: 640px) {
  .faq-view-toggle {
    width: 100%;
    border-radius: 8px;
  }

  .faq-view-toggle button {
    flex: 1 1 100%;
  }
}

/* FAQ sidebar links and contained question cards */
.information-subnav-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.35rem;
  align-items: center;
}

.information-subnav-link {
  display: block;
  min-width: 0;
  padding: 0.4rem 0;
  color: var(--color-text);
  font-weight: 600;
  line-height: 1.3;
  text-decoration: none;
}

.information-subnav-link:hover,
.information-subnav-link:focus-visible,
.information-subnav-link.is-active {
  color: var(--color-blue);
  text-decoration: none;
}

.information-subnav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.8rem;
  height: 1.8rem;
  padding: 0;
  border: 1px solid rgba(37, 47, 45, 0.12);
  border-radius: 999px;
  background: #fff;
  color: var(--color-muted);
  line-height: 1;
}

.information-subnav-toggle span {
  display: block;
  transform: rotate(-90deg);
  transition: transform 0.16s ease;
}

.information-subnav-toggle[aria-expanded="true"] span {
  transform: rotate(0deg);
}

#content .information-main h2#questions + ul,
#content .information-main h2#vragen + ul,
#content .information-main h2#fragen + ul {
  padding-left: 0;
  list-style: none;
}

#content .information-main h2#questions + ul li,
#content .information-main h2#vragen + ul li,
#content .information-main h2#fragen + ul li {
  list-style: none;
}

#content .information-main h2#questions + ul li::marker,
#content .information-main h2#vragen + ul li::marker,
#content .information-main h2#fragen + ul li::marker {
  content: "";
}


.information-subnav-toggle span {
  width: 0.5rem;
  height: 0.5rem;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(-45deg);
}

.information-subnav-toggle[aria-expanded="true"] span {
  transform: rotate(45deg);
}


.faq-page-illustration {
  max-width: var(--reading-width);
  margin: 1.3rem 0 1.7rem;
  border: 1px solid rgba(37, 47, 45, 0.12);
  border-radius: 8px;
  overflow: hidden;
  background: #f8f3e9;
}

.faq-page-illustration img {
  display: block;
  width: 100%;
  height: auto;
}

.information-nav-heading-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 0.45rem;
  padding: 0.85rem 1rem;
}

.information-nav-heading-link {
  min-width: 0;
  color: var(--color-text);
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.25;
  text-decoration: none;
}

.information-nav-heading-link:hover,
.information-nav-heading-link:focus-visible,
.information-nav-heading-link.is-active {
  color: var(--color-blue);
  text-decoration: none;
}

.information-nav-heading-row .information-nav-toggle {
  width: 1.8rem;
  height: 1.8rem;
  padding: 0;
  border: 1px solid rgba(37, 47, 45, 0.12);
  border-radius: 999px;
  background: #fff;
}

.information-nav-toggle span {
  display: inline-block;
  width: 0.5rem;
  height: 0.5rem;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(-45deg);
  transition: transform 0.16s ease;
}

.information-nav-toggle[aria-expanded="true"] span {
  transform: rotate(45deg);
}

.information-nav-toggle-full {
  display: block;
}


.faq-intro-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(15rem, 0.85fr);
  align-items: center;
  gap: clamp(1.2rem, 4vw, 3rem);
  margin: 0 0 1.9rem;
}

.faq-intro-copy h1 {
  margin-top: 0;
}

.faq-intro-copy p {
  max-width: 42rem;
}

.faq-intro-panel .faq-page-illustration {
  max-width: 28rem;
  margin: 0;
  justify-self: end;
}

.faq-intro-panel .faq-page-illustration img {
  width: 100%;
}

@media (max-width: 820px) {
  .faq-intro-panel {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .faq-intro-panel .faq-page-illustration {
    max-width: 100%;
    justify-self: stretch;
  }
}


.information-subnav-toggle,
.information-nav-heading-row .information-nav-toggle {
  position: relative;
  display: inline-grid;
  place-items: center;
}

.information-subnav-toggle span,
.information-nav-toggle span {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0.46rem;
  height: 0.46rem;
  margin: 0;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translate(-58%, -50%) rotate(-45deg);
  transform-origin: center;
}

.information-subnav-toggle[aria-expanded="true"] span,
.information-nav-toggle[aria-expanded="true"] span {
  transform: translate(-50%, -58%) rotate(45deg);
}

.faq-back-to-questions {
  margin: 1.2rem 0 2rem;
  font-size: 0.92rem;
}

.faq-back-to-questions a {
  color: var(--color-blue);
  font-weight: 700;
  text-decoration: none;
}

.faq-back-to-questions a:hover,
.faq-back-to-questions a:focus-visible {
  text-decoration: underline;
}


.information-subnav-toggle,
.information-nav-heading-row .information-nav-toggle {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0;
}

.information-subnav-toggle span,
.information-nav-toggle span {
  position: static;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
  height: auto;
  border: 0;
  transform: none;
  line-height: 1;
}

.information-subnav-toggle span::before,
.information-nav-toggle span::before {
  content: "›";
  display: block;
  width: 1em;
  height: 1em;
  color: currentColor;
  font-size: 1.35rem;
  font-weight: 700;
  line-height: 0.82;
  text-align: center;
  transform: translateY(-0.01em);
}

.information-subnav-toggle[aria-expanded="true"] span,
.information-nav-toggle[aria-expanded="true"] span {
  transform: none;
}

.information-subnav-toggle[aria-expanded="true"] span::before,
.information-nav-toggle[aria-expanded="true"] span::before {
  transform: rotate(90deg) translateX(0.01em);
}

.faq-back-to-questions {
  margin: 1.2rem 0 2rem;
  font-size: 0.92rem;
}

.faq-back-to-questions a {
  color: var(--color-blue);
  font-weight: 700;
  text-decoration: none;
}

.faq-back-to-questions a:hover,
.faq-back-to-questions a:focus-visible {
  text-decoration: underline;
}


.faq-back-to-questions a::before {
  content: none;
}

.faq-code-line {
  margin: 0.75rem 0 1rem;
}

.faq-code-line code {
  display: inline-block;
}

.faq-intro-panel .faq-stack-illustration {
  max-width: 19rem;
}

.faq-intro-panel .faq-stack-illustration img {
  width: 100%;
}

@media (max-width: 820px) {
  .faq-intro-panel .faq-stack-illustration {
    max-width: 17rem;
    justify-self: start;
  }
}


/* Final homepage quote scale override */
#homepage-v1 .home-quote {
  padding: 4.6rem 0 4.8rem;
}

#homepage-v1 .home-quote-text {
  max-width: 1240px;
}

#homepage-v1 .home-quote-mark {
  margin-bottom: 0.15rem;
  font-size: clamp(7.7rem, 13.2vw, 12.1rem);
  line-height: 0.55;
}

#homepage-v1 .home-quote-body,
#homepage-v1 .home-quote-body p {
  font-family: var(--font-sans);
  font-style: italic;
}

#homepage-v1 .home-quote-body {
  font-size: clamp(1.55rem, 2.6vw, 2.15rem);
  line-height: 1.05;
  letter-spacing: 0;
}

#homepage-v1 .home-quote-body p {
  margin-bottom: 0.42rem;
}

#homepage-v1 .home-quote-author {
  margin-top: 1.35rem;
  font-size: var(--text-base);
  font-weight: 400;
}

@media (max-width: 760px) {
  #homepage-v1 .home-quote-body {
    font-size: clamp(1.45rem, 6vw, 2rem);
    line-height: 1.09;
  }

  #homepage-v1 .home-quote-mark {
    font-size: clamp(6.4rem, 24.2vw, 8.8rem);
  }
}


/* Ensure homepage quote paragraphs inherit the graphic quote scale */
#homepage-v1 .home-quote .home-quote-body > p {
  font-size: inherit !important;
  line-height: inherit !important;
  font-weight: inherit;
}

/* Final hosting plan highlight: recommended card */
.hosting-page .hosting-plan-cards .hosting-card.recommended {
  transform: translateY(-0.45rem);
  border-color: rgba(159, 58, 50, 0.42);
  border-top-color: var(--color-red);
  background: linear-gradient(180deg, rgba(159, 58, 50, 0.045), #fff 36%);
  box-shadow: 0 20px 38px rgba(72, 41, 36, 0.13);
}

.hosting-page .hosting-plan-cards .hosting-card.recommended:hover {
  transform: translateY(-0.65rem);
  border-color: rgba(159, 58, 50, 0.52);
  border-top-color: var(--color-red);
  box-shadow: 0 24px 44px rgba(72, 41, 36, 0.16);
}

.hosting-page .hosting-plan-cards .hosting-card.recommended .price-ribbon {
  border: 1px solid rgba(159, 58, 50, 0.2);
  background: rgba(159, 58, 50, 0.09);
}

@media (max-width: 900px) {
  .hosting-page .hosting-plan-cards .hosting-card.recommended,
  .hosting-page .hosting-plan-cards .hosting-card.recommended:hover {
    transform: none;
  }
}

/* Final hosting plan card cleanup */
.hosting-page .hosting-plan-cards,
.hosting-page .hosting-plan-cards .hosting-card {
  isolation: isolate;
}

.hosting-page .hosting-plan-cards::before,
.hosting-page .hosting-plan-cards::after,
.hosting-page .hosting-plan-cards .hosting-card::before,
.hosting-page .hosting-plan-cards .hosting-card::after,
.hosting-page .hosting-plan-cards .price-ribbon::before,
.hosting-page .hosting-plan-cards .price-ribbon::after,
.hosting-page .hosting-plan-cards .hosting-order-ribbon::before,
.hosting-page .hosting-plan-cards .hosting-order-ribbon::after {
  content: none !important;
  display: none !important;
}

.hosting-page .hosting-plan-cards .hosting-card.recommended {
  transform: translateY(-0.55rem);
  border-color: rgba(159, 58, 50, 0.48);
  border-top-color: var(--color-red);
  background: linear-gradient(180deg, #f7e3df 0%, #fbf2ef 42%, #fff 100%);
  box-shadow: 0 24px 46px rgba(72, 41, 36, 0.18);
}

.hosting-page .hosting-plan-cards .hosting-card.recommended:hover {
  transform: translateY(-0.75rem);
  border-color: rgba(159, 58, 50, 0.6);
  border-top-color: var(--color-red);
  box-shadow: 0 28px 54px rgba(72, 41, 36, 0.21);
}

.hosting-page .hosting-plan-cards .hosting-card.recommended .price-ribbon {
  border-color: rgba(159, 58, 50, 0.28);
  background: #f0d0ca;
}

@media (max-width: 900px) {
  .hosting-page .hosting-plan-cards .hosting-card.recommended,
  .hosting-page .hosting-plan-cards .hosting-card.recommended:hover {
    transform: none;
  }
}

/* Homepage case study image */
#homepage-v1 .home-case-study-layout {
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
}

#homepage-v1 .home-case-study-media picture {
  display: block;
  width: 100%;
}

#homepage-v1 .home-case-study-media img {
  width: 100%;
  max-width: none;
  max-height: 430px;
  object-fit: contain;
  object-position: 50% 50%;
}

@media (max-width: 900px) {
  #homepage-v1 .home-case-study-media img {
    max-height: 360px;
  }
}

/* Homepage case study image frame */
#homepage-v1 .home-case-study-media {
  justify-self: center;
  width: min(100%, 460px);
  min-height: 0;
  padding: 0.45rem;
}

#homepage-v1 .home-case-study-media picture {
  display: block;
  width: 100%;
}

#homepage-v1 .home-case-study-media img {
  display: block;
  width: 100%;
  height: auto;
  max-height: none;
  object-fit: contain;
  object-position: 50% 50%;
}

@media (max-width: 900px) {
  #homepage-v1 .home-case-study-media {
    width: min(100%, 520px);
  }
}

/* Homepage Aider section */
#homepage-v1 .home-aider {
  padding: 4rem 0 4.4rem;
  border-top: 1px solid #e6e8e7;
  background: #fff;
}

#homepage-v1 .home-aider-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.95fr) minmax(0, 1.05fr);
  gap: 4rem;
  align-items: center;
}

#homepage-v1 .home-aider-media {
  justify-self: center;
  width: min(100%, 540px);
  padding: 0.45rem;
  border: 1px solid #e2ddcf;
  border-radius: 8px;
  background: #f7f3e8;
}

#homepage-v1 .home-aider-media picture,
#homepage-v1 .home-aider-media img {
  display: block;
  width: 100%;
}

#homepage-v1 .home-aider-media img {
  height: auto;
}

#homepage-v1 .home-aider-text h2 {
  margin: 0 0 1rem;
  color: var(--color-text);
  font-size: var(--text-h1);
  font-weight: 600;
  line-height: var(--line-heading);
}

#homepage-v1 .home-aider-text p,
#homepage-v1 .home-aider-text li {
  color: var(--color-text);
  font-size: var(--text-base);
  line-height: 1.68;
}

#homepage-v1 .home-aider-text p {
  margin: 0 0 1rem;
}

#homepage-v1 .home-aider-text ul {
  margin: 0 0 1rem;
  padding-left: 1.15rem;
}

#homepage-v1 .home-aider-more {
  margin-top: 0.9rem;
}

#homepage-v1 .home-aider-more p {
  margin-top: 0.9rem;
}

@media (max-width: 900px) {
  #homepage-v1 .home-aider-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  #homepage-v1 .home-aider-media {
    width: min(100%, 560px);
  }
}

/* Homepage Aider logo */
#homepage-v1 .home-aider-kicker {
  display: inline-flex;
  align-items: baseline;
  gap: 0.42rem;
}

#homepage-v1 .home-aider-kicker img {
  display: block;
  width: 3.6rem;
  height: auto;
  opacity: 0.9;
  transform: translateY(0.16em);
}

/* Homepage infrastructure image matrix */
#homepage-v1 .home-infrastructure-gallery {
  padding: 3.8rem 0 4.6rem;
  border-top: 1px solid #e6e8e7;
  background: #fff;
}

#homepage-v1 .home-infrastructure-gallery-head {
  max-width: 760px;
  margin: 0 auto 2rem;
  text-align: center;
}

#homepage-v1 .home-infrastructure-gallery-head h2 {
  margin: 0;
  color: var(--color-text);
  font-size: var(--text-h1);
  font-weight: 600;
  line-height: var(--line-heading);
}

#homepage-v1 .home-infrastructure-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
}

#homepage-v1 .home-infrastructure-grid figure {
  margin: 0;
  overflow: hidden;
  border: 1px solid #e2ddcf;
  border-radius: 8px;
  background: #f7f3e8;
  padding: 0.45rem;
  box-shadow: 0 14px 28px rgba(40, 35, 28, 0.08);
}

#homepage-v1 .home-infrastructure-grid img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: 50% 50%;
  border-radius: 5px;
}

@media (max-width: 900px) {
  #homepage-v1 .home-infrastructure-grid {
    grid-template-columns: 1fr;
  }

  #homepage-v1 .home-infrastructure-grid img {
    aspect-ratio: 16 / 10;
  }
}



/* Visible copyright labels for all2all illustrations */
#homepage-v1 .home-hero-image,
#homepage-v1 .home-consulting-media,
#homepage-v1 .home-case-study-media,
#homepage-v1 .home-aider-media,
#homepage-v1 .home-infrastructure-grid figure,
.hosting-feature-visual,
.case-study-hero-image,
#case-study-page .home-case-image,
.faq-page-illustration,
.documentation-hero-visual,
.information-page-hero,
.about-history-gallery a {
  position: relative;
}

#homepage-v1 .home-consulting-media::before,
#homepage-v1 .home-case-study-media::before,
#homepage-v1 .home-aider-media::before,
#homepage-v1 .home-infrastructure-grid figure::before,
.hosting-feature-visual::before,
.case-study-hero-image::before,
#case-study-page .home-case-image::before,
.faq-page-illustration::before,
.documentation-hero-visual::before,
.information-page-hero::before,
.about-history-gallery a::before {
  content: "(c) all2all.org";
  position: absolute;
  top: 0.42rem;
  left: 0.5rem;
  z-index: 2;
  padding: 0.12rem 0.32rem;
  border-radius: 999px;
  background: rgba(248, 244, 234, 0.76);
  color: rgba(37, 47, 45, 0.56);
  font-size: 0.58rem;
  font-weight: 650;
  letter-spacing: 0.02em;
  line-height: 1;
  pointer-events: none;
}

/* Global quick order tab */

.site-order-tab {
  position: fixed;
  right: 0;
  top: 48vh;
  z-index: 80;
  display: flex;
  align-items: center;
  color: var(--color-text);
}

.site-order-tab summary {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 2.15rem;
  min-height: 8.2rem;
  padding: 0.8rem 0.38rem;
  border: 1px solid rgba(38, 98, 112, 0.22);
  border-right: 0;
  border-radius: 8px 0 0 8px;
  background:
    linear-gradient(180deg, var(--color-red) 0 50%, var(--color-green) 50% 100%);
  box-shadow: 0 12px 28px rgba(34, 31, 28, 0.14);
  color: #fff;
  cursor: pointer;
  list-style: none;
}

.site-order-tab summary::-webkit-details-marker {
  display: none;
}

.site-order-tab summary span {
  display: block;
  color: #fff;
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

.site-order-tab summary:focus-visible {
  outline: 2px solid var(--color-blue);
  outline-offset: 3px;
}

.site-order-panel {
  position: absolute;
  right: 2.2rem;
  top: 50%;
  display: grid;
  gap: 0.45rem;
  width: min(15.5rem, calc(100vw - 4.5rem));
  padding: 0.7rem;
  border: 1px solid #e2ddcf;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 42px rgba(34, 31, 28, 0.16);
  opacity: 0;
  pointer-events: none;
  transform: translate(0.75rem, -50%);
  transition: opacity 160ms ease, transform 160ms ease;
}

.site-order-tab[open] .site-order-panel {
  opacity: 1;
  pointer-events: auto;
  transform: translate(0, -50%);
}

.site-order-link {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  min-height: 3rem;
  padding: 0.7rem 0.85rem;
  border: 1px solid #ece8dc;
  border-radius: 6px;
  background: #faf8f1;
  color: var(--color-text);
  font-size: var(--text-sm);
  font-weight: 700;
  line-height: 1.25;
  text-decoration: none;
}

.site-order-link:hover,
.site-order-link:focus-visible {
  background: #fff;
  border-color: #ddd5c2;
  text-decoration: none;
  transform: translateX(-2px);
}

.site-order-color {
  flex: 0 0 0.58rem;
  width: 0.58rem;
  height: 2rem;
  border-radius: 999px;
  background: var(--color-red);
}

.site-order-domains .site-order-color {
  background: var(--color-green);
}

.site-order-hosting:hover span:last-child,
.site-order-hosting:focus-visible span:last-child {
  color: var(--color-red);
}

.site-order-domains:hover span:last-child,
.site-order-domains:focus-visible span:last-child {
  color: var(--color-green);
}

@media (max-width: 760px) {
  .site-order-tab {
    top: auto;
    right: 0.75rem;
    bottom: 0.9rem;
  }

  .site-order-tab summary {
    min-width: auto;
    min-height: auto;
    padding: 0.72rem 0.86rem;
    border-right: 1px solid rgba(38, 98, 112, 0.22);
    border-radius: 999px;
  }

  .site-order-tab summary span {
    writing-mode: horizontal-tb;
    transform: none;
  }

  .site-order-panel {
    right: 0;
    top: auto;
    bottom: calc(100% + 0.6rem);
    transform: translateY(0.6rem);
  }

  .site-order-tab[open] .site-order-panel {
    transform: translateY(0);
  }
}

/* Final homepage/domain/hosting polish */
#homepage-v1 .home-consulting-more,
#homepage-v1 .home-case-study-more {
  margin-top: 0.45rem;
}

#homepage-v1 .home-consulting-more p,
#homepage-v1 .home-case-study-more p {
  margin-top: 0.9rem;
}

#homepage-v1 .home-infrastructure-gallery-head .home-section-kicker {
  color: var(--color-blue);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hosting-page .hosting-plan-cards {
  margin-bottom: 2rem;
}

.hosting-page .price-list-updated {
  position: relative;
  z-index: 1;
  clear: both;
  margin: 1.2rem 0 0;
}

.domains-hero-actions .home-button,
.domains-order-cta .home-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.75rem;
  padding: 0.78rem 1.16rem;
  border: 0;
  border-radius: 3px;
  background: var(--color-green);
  color: #fff;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  box-shadow: 0 10px 22px rgba(99, 120, 0, 0.14);
}

.domains-hero-actions .home-button:hover,
.domains-hero-actions .home-button:focus-visible,
.domains-order-cta .home-button:hover,
.domains-order-cta .home-button:focus-visible {
  background: #526500;
  color: #fff;
  text-decoration: none;
}

/* Domains hero links: keep them as text links, with section colors */
.domains-page .domains-hero-actions {
  align-items: center;
  gap: 1.25rem;
}

.domains-page .domains-hero-actions .home-button {
  display: inline;
  min-height: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  font-weight: 700;
  line-height: 1.35;
  text-decoration: none;
}

.domains-page .domains-hero-actions .home-button-primary,
.domains-page .domains-hero-actions .home-button-primary:hover,
.domains-page .domains-hero-actions .home-button-primary:focus-visible {
  background: transparent;
  color: var(--color-green);
}

.domains-page .domains-hero-actions .home-button-secondary,
.domains-page .domains-hero-actions .home-button-secondary:hover,
.domains-page .domains-hero-actions .home-button-secondary:focus-visible {
  background: transparent;
  color: var(--color-blue);
}

.domains-page .domains-hero-actions .home-button:hover,
.domains-page .domains-hero-actions .home-button:focus-visible {
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

/* Hosting price update spacing */
.hosting-page .hosting-plan-cards {
  margin-bottom: 3.2rem;
}

.hosting-page .price-list-updated {
  display: block;
  margin: 0.35rem 0 0;
  padding-left: 0.15rem;
  color: var(--color-muted);
  font-size: var(--text-sm);
  line-height: 1.45;
}

/* Domains action links final color pass */
.domains-page .domains-hero-actions .home-button,
.domains-page .domains-order-cta .home-button {
  display: inline;
  min-height: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  font-weight: 700;
  line-height: 1.35;
  text-decoration: none;
}

.domains-page .domains-hero-actions .home-button-primary,
.domains-page .domains-hero-actions .home-button-primary:hover,
.domains-page .domains-hero-actions .home-button-primary:focus-visible,
.domains-page .domains-order-cta .home-button,
.domains-page .domains-order-cta .home-button:hover,
.domains-page .domains-order-cta .home-button:focus-visible {
  background: transparent;
  color: var(--color-green);
}

.domains-page .domains-hero-actions .home-button-secondary,
.domains-page .domains-hero-actions .home-button-secondary:hover,
.domains-page .domains-hero-actions .home-button-secondary:focus-visible {
  background: transparent;
  color: var(--color-blue);
}

.domains-page .domains-hero-actions .home-button:hover,
.domains-page .domains-hero-actions .home-button:focus-visible,
.domains-page .domains-order-cta .home-button:hover,
.domains-page .domains-order-cta .home-button:focus-visible {
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

/* Domains action links: explicit section colors */
main.domains-page .domains-hero-actions a.home-button-primary,
main.domains-page .domains-hero-actions a.home-button-primary:visited,
main.domains-page .domains-hero-actions a.home-button-primary:hover,
main.domains-page .domains-hero-actions a.home-button-primary:focus-visible,
main.domains-page .domains-order-cta a.home-button,
main.domains-page .domains-order-cta a.home-button:visited,
main.domains-page .domains-order-cta a.home-button:hover,
main.domains-page .domains-order-cta a.home-button:focus-visible {
  color: #637800;
  background: transparent;
  box-shadow: none;
}

main.domains-page .domains-hero-actions a.home-button-secondary,
main.domains-page .domains-hero-actions a.home-button-secondary:visited,
main.domains-page .domains-hero-actions a.home-button-secondary:hover,
main.domains-page .domains-hero-actions a.home-button-secondary:focus-visible {
  color: #2d6b7a;
  background: transparent;
  box-shadow: none;
}

/* Domains explicit action link colors */
main.domains-page a.domains-order-link,
main.domains-page a.domains-order-link:link,
main.domains-page a.domains-order-link:visited,
main.domains-page a.domains-order-link:hover,
main.domains-page a.domains-order-link:focus-visible,
main.domains-page a.domains-cta-link,
main.domains-page a.domains-cta-link:link,
main.domains-page a.domains-cta-link:visited,
main.domains-page a.domains-cta-link:hover,
main.domains-page a.domains-cta-link:focus-visible {
  color: #637800 !important;
  background: transparent !important;
  box-shadow: none !important;
}

main.domains-page a.domains-info-link,
main.domains-page a.domains-info-link:link,
main.domains-page a.domains-info-link:visited,
main.domains-page a.domains-info-link:hover,
main.domains-page a.domains-info-link:focus-visible {
  color: #2d6b7a !important;
  background: transparent !important;
  box-shadow: none !important;
}

/* Feature block inline disclosure */
.hosting-feature-readmore {
  margin-top: 0.75rem;
}

.hosting-feature-readmore summary {
  color: var(--color-link);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-weight: 700;
  list-style: none;
}

.hosting-feature-readmore summary::-webkit-details-marker {
  display: none;
}

.hosting-feature-readmore summary::before {
  content: "▸";
  color: currentColor;
  font-size: 0.85em;
  line-height: 1;
  transform: translateY(0.02em);
}

.hosting-feature-readmore[open] summary::before {
  transform: rotate(90deg) translateX(0.02em);
}

.hosting-feature-readmore p:first-of-type {
  margin-top: 1rem;
}


/* ===== CASE STUDY GENERIC CONTENT ===== */
#case-study-page .case-study-hero-grid.has-image {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 420px);
  align-items: center;
  gap: 3rem;
  text-align: left;
}

#case-study-page .case-study-hero-grid.has-image h1,
#case-study-page .case-study-hero-grid.has-image .case-study-intro {
  margin-left: 0;
  text-align: left;
}

#case-study-page .case-study-hero-image img {
  width: 100%;
  display: block;
  border-radius: 8px;
  background: #f5f2ea;
  border: 1px solid #e2ddd1;
  box-shadow: 0 18px 45px rgba(35, 35, 30, 0.08);
}

#case-study-page .case-study-prose {
  max-width: 840px;
  margin: 0 auto 2rem;
}

#case-study-page .case-study-prose p {
  font-size: var(--text-base);
  line-height: 1.8;
  margin: 0 0 1.15rem;
}

#case-study-page .case-study-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid #e6e4dc;
}

@media (max-width: 900px) {
  #case-study-page .case-study-hero-grid.has-image {
    display: block;
    text-align: center;
  }

  #case-study-page .case-study-hero-grid.has-image h1,
  #case-study-page .case-study-hero-grid.has-image .case-study-intro {
    margin-left: auto;
    text-align: center;
  }

  #case-study-page .case-study-hero-image {
    margin-top: 2rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  #homepage-v1 .fractal-layer,
  #fractal-hero .layer {
    animation-duration: 120s;
  }
}

/* Homepage rhythm typography normalization */
#homepage-v1 .home-section-title,
#homepage-v1 .home-infrastructure-gallery-head h2 {
  font-size: var(--text-h1);
  font-weight: 600;
  line-height: var(--line-heading);
}

#homepage-v1 .home-section-kicker,
#homepage-v1 .home-infrastructure-gallery-head .home-section-kicker {
  font-size: var(--text-sm);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

#homepage-v1 .home-manifesto-services .home-section-title {
  margin-bottom: 1rem;
  font-size: var(--text-h3);
  font-weight: 600;
  line-height: 1.12;
}

#homepage-v1 .home-manifesto-services .home-section-title::after {
  width: 2.2rem;
  height: 2px;
  margin-top: 0.55rem;
}

/* Homepage service links follow the section color system. */
#homepage-v1 .home-service-list li:nth-child(1) a {
  color: var(--color-red);
}

#homepage-v1 .home-service-list li:nth-child(3) a {
  color: var(--color-green);
}

#homepage-v1 .home-service-list li:nth-child(1) a:hover,
#homepage-v1 .home-service-list li:nth-child(1) a:focus {
  color: var(--color-red-dark);
}

#homepage-v1 .home-service-list li:nth-child(3) a:hover,
#homepage-v1 .home-service-list li:nth-child(3) a:focus {
  color: var(--color-green-dark);
}

/* Domain order cross-link to hosting order. */
.domain-order-page .domain-order-domain-actions {
  align-items: stretch;
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.domain-order-page .domain-with-hosting-link,
.domain-order-page .domain-with-hosting-link:visited {
  align-items: center;
  background: var(--color-red);
  border-color: var(--color-red);
  color: #fff;
  display: inline-flex;
  justify-content: center;
  text-decoration: none;
}

.domain-order-page .domain-with-hosting-link:hover,
.domain-order-page .domain-with-hosting-link:focus,
.domain-order-page .domain-with-hosting-link:active {
  background: var(--color-red-dark);
  border-color: var(--color-red-dark);
  color: #fff;
  text-decoration: none;
}

#content .domain-order-page .domain-with-hosting-link,
#content .domain-order-page .domain-with-hosting-link:visited {
  background: var(--color-red);
  border-color: var(--color-red);
  color: #fff;
}

#content .domain-order-page .domain-with-hosting-link:hover,
#content .domain-order-page .domain-with-hosting-link:focus,
#content .domain-order-page .domain-with-hosting-link:active {
  background: var(--color-red-dark);
  border-color: var(--color-red-dark);
  color: #fff;
  text-decoration: none;
}


#homepage-v1 .home-hero-image .image-credit,
#homepage-v1 .home-hero-image .asset-credit,
#homepage-v1 .home-hero-image .media-credit {
  display: none;
}


/* Keep the animated tree hero safely over-cropped so bitmap edges never show. */
#homepage-v1 #fractal-hero .fractal-layer,
#homepage-v1 #fractal-hero .layer {
  max-width: none;
  max-height: none;
}

#homepage-v1 #fractal-hero img.fractal-layer {
  max-width: none;
  max-height: none;
  min-width: 184%;
  min-height: 184%;
}

#homepage-v1 .home-infrastructure-intro {
  max-width: 780px;
  margin: 1.1rem 0 2rem;
}

#homepage-v1 .home-infrastructure-intro p {
  margin: 0 0 1rem;
  color: var(--color-text);
  font-size: var(--text-base);
  line-height: 1.74;
}

/* Domain order cross-link beside "Add another domain name". */
#content .domain-order-page .domain-order-domain-actions {
  align-items: stretch;
}

#content .domain-order-page .domain-order-domain-actions .domain-add-button,
#content .domain-order-page .domain-order-domain-actions .a2a-domain-to-hosting-button {
  min-height: 3.05rem;
  padding: 0.75rem 1rem;
}

#content .domain-order-page .domain-order-domain-actions a.a2a-domain-to-hosting-button,
#content .domain-order-page .domain-order-domain-actions a.a2a-domain-to-hosting-button:link,
#content .domain-order-page .domain-order-domain-actions a.a2a-domain-to-hosting-button:visited,
#content .domain-order-page .domain-order-domain-actions a.a2a-domain-to-hosting-button:hover,
#content .domain-order-page .domain-order-domain-actions a.a2a-domain-to-hosting-button:focus,
#content .domain-order-page .domain-order-domain-actions a.a2a-domain-to-hosting-button:focus-visible,
#content .domain-order-page .domain-order-domain-actions a.a2a-domain-to-hosting-button:active {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  min-width: 12.5rem;
  border: 1px solid var(--color-red);
  border-radius: 6px;
  background: var(--color-red);
  color: #fff;
  font-weight: 600;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  text-shadow: none;
}

#content .domain-order-page .domain-order-domain-actions a.a2a-domain-to-hosting-button span {
  color: #fff;
}

#content .domain-order-page .domain-order-domain-actions a.a2a-domain-to-hosting-button:hover span,
#content .domain-order-page .domain-order-domain-actions a.a2a-domain-to-hosting-button:focus span,
#content .domain-order-page .domain-order-domain-actions a.a2a-domain-to-hosting-button:focus-visible span {
  text-decoration: underline;
  text-decoration-thickness: 1.5px;
  text-underline-offset: 0.18em;
}

/* Homepage Manifesto / Services title underlines use the all2all gradient vocabulary. */
#homepage-v1 .home-manifesto-services .home-section-title::after {
  background: linear-gradient(102deg, var(--color-green) 0%, var(--color-blue) 34%, var(--color-red) 66%, #151716 100%);
}

#homepage-v1 .home-infrastructure-link,
#homepage-v1 .home-infrastructure-link:visited {
  display: inline-flex;
  align-items: center;
  color: var(--color-blue);
  font-weight: 600;
  text-decoration: none;
}

#homepage-v1 .home-infrastructure-link:hover,
#homepage-v1 .home-infrastructure-link:focus {
  color: var(--color-blue-dark);
  text-decoration: underline;
  text-decoration-thickness: 1.5px;
  text-underline-offset: 0.18em;
}
