/* ==========================================================================
   Fabnet Group — site stylesheet
   Plain CSS, no framework, no build step.
   ========================================================================== */

:root {
  --navy: #0b1730;
  --navy-2: #12224a;
  --ink: #17233b;
  --text: #253046;
  --muted: #5d6779;
  --line: #e2e7ef;
  --bg: #f5f7fb;
  --surface: #ffffff;
  --red: #b8001f;
  --red-dark: #8f0018;
  --blue: #2f6fd6;
  --blue-soft: #e8f0fd;
  --green: #1a9a5b;
  --radius: 14px;
  --radius-sm: 8px;
  --shadow: 0 1px 2px rgba(16, 24, 40, .06), 0 8px 24px -12px rgba(16, 24, 40, .18);
  --shadow-lg: 0 24px 60px -24px rgba(11, 23, 48, .45);
  --font: "Inter", "Segoe UI", system-ui, -apple-system, Roboto, "Helvetica Neue", Arial, sans-serif;
  --mono: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  --container: 1180px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}
img, svg { max-width: 100%; display: block; }
a { color: var(--blue); text-decoration: none; }
a:hover { text-decoration: underline; }
h1, h2, h3, h4 { color: var(--ink); line-height: 1.15; margin: 0 0 .5em; font-weight: 700; letter-spacing: -.01em; }
h1 { font-size: clamp(2rem, 4.5vw, 3.4rem); letter-spacing: -.02em; }
h2 { font-size: clamp(1.6rem, 3vw, 2.3rem); letter-spacing: -.02em; }
h3 { font-size: 1.2rem; }
p { margin: 0 0 1em; }
ul, ol { margin: 0 0 1em; padding-left: 1.25em; }
table { border-collapse: collapse; width: 100%; }
button, input, select { font: inherit; }
:focus-visible { outline: 3px solid var(--blue); outline-offset: 2px; border-radius: 4px; }
.visually-hidden { position: absolute !important; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.skip-link { position: absolute; left: 1rem; top: -4rem; background: var(--navy); color: #fff; padding: .6rem 1rem; border-radius: var(--radius-sm); z-index: 100; }
.skip-link:focus { top: 1rem; }

.container { width: min(var(--container), 100% - 2.5rem); margin-inline: auto; }
.section { padding: clamp(3rem, 7vw, 5.5rem) 0; }
.section-tight { padding: clamp(2rem, 5vw, 3.5rem) 0; }
.section-alt { background: var(--surface); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.section-head { max-width: 720px; margin-bottom: 2.5rem; }
.section-head.center { margin-inline: auto; text-align: center; }
.eyebrow { display: inline-block; font-size: .78rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--red); margin-bottom: .75rem; }
.lead { font-size: 1.15rem; color: var(--muted); }
.muted { color: var(--muted); }
.small { font-size: .9rem; }

/* Buttons ------------------------------------------------------------------ */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .8rem 1.35rem; border-radius: 999px; font-weight: 600; font-size: .98rem;
  border: 1px solid transparent; cursor: pointer; text-decoration: none !important;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease, color .15s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--red); color: #fff; box-shadow: 0 8px 20px -10px rgba(184, 0, 31, .7); }
.btn-primary:hover { background: var(--red-dark); color: #fff; }
.btn-dark { background: var(--navy); color: #fff; }
.btn-dark:hover { background: var(--navy-2); color: #fff; }
.btn-outline { background: transparent; color: var(--ink); border-color: var(--line); }
.btn-outline:hover { border-color: var(--ink); }
.btn-light { background: #fff; color: var(--navy); }
.btn-light:hover { background: #f1f4f9; }
.btn-ghost { background: rgba(255,255,255,.12); color: #fff; border-color: rgba(255,255,255,.28); backdrop-filter: blur(6px); }
.btn-ghost:hover { background: rgba(255,255,255,.2); color: #fff; }
.btn-sm { padding: .55rem 1rem; font-size: .9rem; }
.btn-block { width: 100%; justify-content: center; }
.btn svg { width: 1.05em; height: 1.05em; }

/* Header ------------------------------------------------------------------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.88); backdrop-filter: saturate(160%) blur(12px);
  border-bottom: 1px solid var(--line);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; height: 72px; }
.brand { display: inline-flex; align-items: center; }
.brand img { height: 44px; width: auto; }
.nav { display: flex; align-items: center; gap: .25rem; }
.nav a { color: var(--ink); font-weight: 600; font-size: .95rem; padding: .55rem .9rem; border-radius: 999px; }
.nav a:not(.btn):hover { background: var(--bg); text-decoration: none; }
.nav a[aria-current="page"] { color: var(--red); }
.nav .btn { margin-left: .5rem; }
.nav a.btn-dark, .nav a.btn-dark:hover { color: #fff; }
.nav-toggle {
  display: none; width: 44px; height: 44px; border: 1px solid var(--line); background: #fff; border-radius: 10px;
  align-items: center; justify-content: center; cursor: pointer;
}
.nav-toggle span { display: block; width: 20px; height: 2px; background: var(--ink); position: relative; transition: transform .2s; }
.nav-toggle span::before, .nav-toggle span::after { content: ""; position: absolute; left: 0; width: 20px; height: 2px; background: var(--ink); transition: transform .2s, top .2s; }
.nav-toggle span::before { top: -6px; } .nav-toggle span::after { top: 6px; }
.nav-toggle[aria-expanded="true"] span { background: transparent; }
.nav-toggle[aria-expanded="true"] span::before { top: 0; transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] span::after { top: 0; transform: rotate(-45deg); }

@media (max-width: 860px) {
  .nav-toggle { display: inline-flex; }
  .nav {
    display: none; position: absolute; left: 0; right: 0; top: 72px;
    flex-direction: column; align-items: stretch; gap: .25rem;
    background: #fff; border-bottom: 1px solid var(--line); padding: 1rem 1.25rem 1.25rem;
    box-shadow: var(--shadow);
  }
  .nav.open { display: flex; }
  .nav a { padding: .8rem 1rem; border-radius: var(--radius-sm); }
  .nav .btn { margin: .5rem 0 0; justify-content: center; }
}

/* Hero --------------------------------------------------------------------- */
.hero {
  position: relative; color: #fff; overflow: hidden;
  background: var(--navy) center / cover no-repeat;
  background-image: linear-gradient(105deg, rgba(8, 17, 38, .94) 0%, rgba(8, 17, 38, .78) 45%, rgba(8, 17, 38, .35) 100%), url("../img/datacentre.jpg");
}
.hero-inner { padding: clamp(4rem, 9vw, 7.5rem) 0 clamp(3.5rem, 7vw, 6rem); max-width: 720px; }
.hero h1 { color: #fff; }
.hero .lead { color: rgba(255,255,255,.82); font-size: clamp(1.05rem, 1.6vw, 1.3rem); max-width: 600px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: 2rem; }
.hero-pill { display: inline-flex; align-items: center; gap: .5rem; padding: .35rem .85rem .35rem .5rem; border-radius: 999px; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.2); font-size: .85rem; font-weight: 600; margin-bottom: 1.5rem; }
.hero-pill .dot { width: 8px; height: 8px; border-radius: 50%; background: #3ddc84; box-shadow: 0 0 0 4px rgba(61, 220, 132, .25); }

.page-hero {
  position: relative; color: #fff;
  background: var(--navy) center / cover no-repeat;
  background-image: linear-gradient(100deg, rgba(8, 17, 38, .96) 0%, rgba(8, 17, 38, .85) 55%, rgba(8, 17, 38, .55) 100%), url("../img/fibre-switch.jpg");
}
.page-hero .hero-inner { padding: clamp(3rem, 7vw, 5rem) 0; }
.page-hero h1 { font-size: clamp(1.9rem, 3.8vw, 2.9rem); color: #fff; }
.page-hero .lead { color: rgba(255,255,255,.85); font-size: clamp(1.05rem, 1.6vw, 1.25rem); max-width: 680px; }
.page-hero a:not(.btn) { color: #fff; text-decoration: underline; }
.page-hero .eyebrow { color: #ff8fa3; }

/* Stats strip -------------------------------------------------------------- */
.stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.stat { background: var(--surface); padding: 1.5rem 1.5rem; }
.stat strong { display: block; font-size: 1.7rem; color: var(--ink); letter-spacing: -.02em; line-height: 1.1; }
.stat span { color: var(--muted); font-size: .92rem; }

/* Cards -------------------------------------------------------------------- */
.grid { display: grid; gap: 1.5rem; }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.grid-2 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.grid-4 { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }
.card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.75rem; box-shadow: var(--shadow); display: flex; flex-direction: column;
  transition: transform .2s ease, box-shadow .2s ease;
}
.card:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.card.static:hover { transform: none; box-shadow: var(--shadow); }
.card h3 { margin-top: .25rem; }
.card p:last-of-type { margin-bottom: 0; }
.card .card-link { margin-top: auto; padding-top: 1.25rem; font-weight: 600; color: var(--red); display: inline-flex; align-items: center; gap: .35rem; }
.card .card-link:hover { text-decoration: none; gap: .6rem; }
.icon {
  width: 46px; height: 46px; border-radius: 12px; display: inline-flex; align-items: center; justify-content: center;
  background: var(--blue-soft); color: var(--blue); margin-bottom: 1rem;
}
.icon.red { background: #fde8ec; color: var(--red); }
.icon.green { background: #e4f6ec; color: var(--green); }
.icon svg { width: 24px; height: 24px; }

.check-list { list-style: none; padding: 0; margin: 0; }
.check-list li { position: relative; padding-left: 1.85rem; margin-bottom: .6rem; }
.check-list li::before {
  content: ""; position: absolute; left: 0; top: .28em; width: 1.15rem; height: 1.15rem; border-radius: 50%;
  background: var(--green) url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>") center / 65% no-repeat;
}

/* Split / feature blocks --------------------------------------------------- */
.split { display: grid; gap: 3rem; align-items: start; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.split figure { margin: 0; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-lg); }
.split figure img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4 / 3; }

/* Pricing table ------------------------------------------------------------ */
.price-table { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.price-table table { width: 100%; }
.price-table th, .price-table td { padding: .9rem 1.25rem; border-bottom: 1px solid var(--line); text-align: left; vertical-align: top; }
.price-table tr:last-child td { border-bottom: 0; }
.price-table th { background: #f8fafc; font-size: .8rem; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); font-weight: 700; }
.price-table td.price { text-align: right; font-weight: 700; color: var(--ink); white-space: nowrap; font-variant-numeric: tabular-nums; }
.price-table td.price .per { font-weight: 400; color: var(--muted); font-size: .85rem; }
.price-table tr.group td { background: #f8fafc; font-weight: 700; color: var(--ink); font-size: .85rem; letter-spacing: .06em; text-transform: uppercase; }
.badge { display: inline-block; padding: .15rem .6rem; border-radius: 999px; font-size: .75rem; font-weight: 700; letter-spacing: .04em; }
.badge-green { background: #e4f6ec; color: #147a47; }
.badge-blue { background: var(--blue-soft); color: #1f56b3; }
.badge-red { background: #fde8ec; color: var(--red); }

/* Configurator ------------------------------------------------------------- */
.configurator { display: grid; gap: 1.75rem; grid-template-columns: repeat(auto-fit, minmax(340px, 1fr)); align-items: start; }
.config-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); overflow: hidden; }
.config-head { padding: 1rem 1.25rem .85rem; border-bottom: 1px solid var(--line); display: flex; justify-content: space-between; align-items: flex-start; gap: 1rem; background: linear-gradient(180deg, #fbfcfe, #fff); }
.config-head h3 { margin: 0 0 .15rem; font-size: 1.2rem; }
.config-head p { margin: 0; color: var(--muted); font-size: .92rem; }
.config-price { text-align: right; white-space: nowrap; }
.config-price .amount { font-size: 1.7rem; font-weight: 800; color: var(--ink); letter-spacing: -.02em; line-height: 1; font-variant-numeric: tabular-nums; }
.config-price .amount small { font-size: 1rem; font-weight: 700; vertical-align: top; margin-right: .1rem; }
.config-price .per { display: block; color: var(--muted); font-size: .8rem; margin-top: .35rem; }
.config-body { padding: .5rem 1.25rem 1.1rem; }
.field { display: grid; grid-template-columns: 98px 1fr; align-items: center; gap: .6rem; padding: .28rem 0; border-bottom: 1px dashed var(--line); }
.field:last-of-type { border-bottom: 0; }
.field label { font-weight: 600; font-size: .9rem; color: var(--ink); }
.select-wrap { position: relative; }
.select-wrap select {
  width: 100%; appearance: none; -webkit-appearance: none; padding: .42rem 2.2rem .42rem .7rem;
  border: 1px solid var(--line); border-radius: var(--radius-sm); background: #fff; color: var(--text); cursor: pointer;
  font-size: .95rem;
}
.select-wrap select:hover { border-color: #c5ceda; }
.select-wrap select:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(47,111,214,.18); outline: none; }
.select-wrap::after {
  content: ""; position: absolute; right: .9rem; top: 50%; width: .55rem; height: .55rem; pointer-events: none;
  border-right: 2px solid var(--muted); border-bottom: 2px solid var(--muted); transform: translateY(-70%) rotate(45deg);
}
.config-foot { margin-top: .85rem; display: flex; flex-direction: column; gap: .6rem; }
.config-foot .note { font-size: .85rem; color: var(--muted); margin: 0; }
.config-foot .btn { align-self: stretch; justify-content: center; }
@media (max-width: 480px) {
  .field { grid-template-columns: 84px 1fr; gap: .5rem; }
  .field label { font-size: .85rem; }
  .config-head, .config-body { padding-left: 1rem; padding-right: 1rem; }
  /* title + price on one line, description full width below */
  .config-head { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: .25rem .75rem; }
  .config-head > div:first-child { display: contents; }
  .config-head h3 { grid-column: 1; grid-row: 1; }
  .config-head p { grid-column: 1 / -1; grid-row: 2; font-size: .85rem; }
  .config-price { grid-column: 2; grid-row: 1; }
  .config-price .amount { font-size: 1.5rem; }
}

/* Callouts / CTA ----------------------------------------------------------- */
.cta {
  background: var(--navy); color: #fff; border-radius: calc(var(--radius) + 6px); padding: clamp(2rem, 5vw, 3.5rem);
  display: grid; gap: 2rem; grid-template-columns: 1.4fr 1fr; align-items: center;
  background-image: radial-gradient(800px 300px at 90% -20%, rgba(47,111,214,.45), transparent 60%), radial-gradient(500px 250px at -10% 120%, rgba(184,0,31,.4), transparent 60%);
}
.cta h2 { color: #fff; margin-bottom: .5rem; }
.cta p { color: rgba(255,255,255,.78); margin: 0; }
.cta a:not(.btn) { color: #fff; text-decoration: underline; }
.cta .actions { display: flex; flex-wrap: wrap; gap: .75rem; justify-content: flex-end; }
@media (max-width: 760px) { .cta { grid-template-columns: 1fr; } .cta .actions { justify-content: flex-start; } }

.contact-list { list-style: none; margin: 0; padding: 0; display: grid; gap: .75rem; }
.contact-list li { display: flex; gap: .85rem; align-items: flex-start; }
.contact-list .k { min-width: 84px; color: var(--muted); font-size: .9rem; padding-top: .1rem; }
.contact-list a { color: var(--ink); font-weight: 600; }
.contact-list a:hover { color: var(--red); }

.example { background: var(--navy); color: #d7e3ff; border-radius: var(--radius-sm); padding: 1rem 1.25rem; font-family: var(--mono); font-size: .88rem; line-height: 1.8; overflow-x: auto; }
.example .arrow { color: #ff8fa3; padding: 0 .5rem; }
.example .dim { color: #8ea3c9; }

/* Address / definition lists ---------------------------------------------- */
.kv { display: grid; grid-template-columns: max-content 1fr; gap: .5rem 1.5rem; margin: 0; }
.kv dt { color: var(--muted); font-size: .9rem; }
.kv dd { margin: 0; font-weight: 600; color: var(--ink); }

/* Legal -------------------------------------------------------------------- */
.legal { display: grid; gap: 3rem; grid-template-columns: 260px 1fr; align-items: start; }
.legal .toc { position: sticky; top: 92px; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.25rem; }
.legal .toc strong { display: block; font-size: .8rem; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); margin-bottom: .75rem; }
.legal .toc ol { margin: 0; padding-left: 1.2rem; font-size: .92rem; }
.legal .toc li { margin-bottom: .35rem; }
.legal .toc a { color: var(--ink); }
.legal .toc a:hover { color: var(--red); }
.legal article { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(1.5rem, 4vw, 3rem); }
.legal article h2 { font-size: 1.25rem; margin-top: 2.25rem; padding-top: 2rem; border-top: 1px solid var(--line); }
.legal article h2:first-of-type { margin-top: 0; padding-top: 0; border-top: 0; }
.legal article p, .legal article li { color: var(--text); }
.legal .fees td { padding: .5rem .75rem; border-bottom: 1px solid var(--line); }
.legal .fees td:last-child { text-align: right; font-weight: 600; white-space: nowrap; }
@media (max-width: 900px) { .legal { grid-template-columns: 1fr; } .legal .toc { position: static; } }

/* Footer ------------------------------------------------------------------- */
.site-footer { background: var(--navy); color: rgba(255,255,255,.75); padding: 3.5rem 0 2rem; margin-top: auto; }
.footer-grid { display: grid; gap: 2.5rem; grid-template-columns: 1.6fr 1fr 1fr 1fr; }
.site-footer h4 { color: #fff; font-size: .85rem; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 1rem; }
.site-footer ul { list-style: none; margin: 0; padding: 0; }
.site-footer li { margin-bottom: .55rem; }
.site-footer a { color: rgba(255,255,255,.78); }
.site-footer a:hover { color: #fff; }
.footer-brand img { height: 40px; width: auto; margin-bottom: 1.25rem; }
.footer-brand p { font-size: .93rem; max-width: 380px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.12); margin-top: 2.5rem; padding-top: 1.5rem; display: flex; flex-wrap: wrap; justify-content: space-between; gap: .75rem 2rem; font-size: .85rem; color: rgba(255,255,255,.55); }
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .footer-grid { grid-template-columns: 1fr; } }

/* Page layout helper so footer sticks to the bottom on short pages -------- */
body { min-height: 100vh; display: flex; flex-direction: column; }
main { flex: 1; }

/* Motion preferences ------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition: none !important; scroll-behavior: auto !important; }
}

@media print {
  .site-header, .site-footer, .hero-actions, .cta, .nav-toggle { display: none !important; }
  .hero, .page-hero { background: none; color: #000; }
  .hero h1, .page-hero h1 { color: #000; }
}

/* Order flow (rendered by /o/dedicated-server-order.cgi) ---------------- */
.steps { list-style: none; margin: 0 0 1.5rem; padding: 0; display: flex; gap: .5rem 1.5rem; flex-wrap: wrap; font-size: .9rem; font-weight: 600; color: var(--muted); }
.steps li { display: inline-flex; align-items: center; gap: .5rem; }
.steps li span { width: 1.6rem; height: 1.6rem; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; font-size: .8rem; background: var(--line); color: var(--muted); }
.steps li.done span { background: var(--green); color: #fff; }
.steps li.current { color: var(--ink); }
.steps li.current span { background: var(--red); color: #fff; }
.order-grid { display: grid; gap: 1.5rem; grid-template-columns: minmax(0, 1fr) minmax(300px, 400px); align-items: start; }
.order-main { display: grid; gap: 1.5rem; min-width: 0; }
.order-side { min-width: 0; }
@media (max-width: 900px) { .order-grid { grid-template-columns: 1fr; } .order-side { order: -1; } }
.frow { margin-bottom: .85rem; }
.frow label { display: flex; justify-content: space-between; align-items: baseline; font-weight: 600; font-size: .9rem; color: var(--ink); margin-bottom: .3rem; }
.frow .hint { font-weight: 400; color: var(--muted); font-size: .8rem; }
.frow-split { display: grid; grid-template-columns: 1fr 2fr; gap: .85rem; }
.expiry { display: grid; grid-template-columns: 1fr 1fr; gap: .5rem; }
.input { width: 100%; padding: .55rem .75rem; border: 1px solid var(--line); border-radius: var(--radius-sm); background: #fff; color: var(--text); font-size: .95rem; }
.input:hover { border-color: #c5ceda; }
.input:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(47,111,214,.18); outline: none; }
textarea.input { resize: vertical; min-height: 5.5rem; }
.check { display: flex; gap: .7rem; align-items: flex-start; padding: .65rem 0; border-top: 1px dashed var(--line); font-size: .95rem; cursor: pointer; }
.check input { width: 1.15rem; height: 1.15rem; margin: .15rem 0 0; accent-color: var(--red); flex: none; }
.check.terms { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); margin: .75rem 0 1rem; }
.cc-fields { padding: .25rem 0 .5rem 1.85rem; }
.amount-due { display: flex; justify-content: space-between; align-items: baseline; gap: 1rem; background: #f8fafc; border: 1px solid var(--line); border-radius: var(--radius-sm); padding: .7rem 1rem; margin-bottom: .75rem; }
.amount-due strong { font-size: 1.35rem; color: var(--ink); font-variant-numeric: tabular-nums; }
.alert { border-radius: var(--radius-sm); padding: 1rem 1.25rem; margin-bottom: 1.5rem; border: 1px solid; }
.alert ul { margin: .5rem 0 0; padding-left: 1.2rem; }
.alert li { margin-bottom: .25rem; }
.alert-error { background: #fdecef; border-color: #f5b5c0; color: #7a0013; }
.kv.summary { grid-template-columns: 104px 1fr; gap: .45rem 1rem; }
.kv.summary dd { font-weight: 500; }
@media (max-width: 480px) { .frow-split { grid-template-columns: 1fr; } .cc-fields { padding-left: 0; } }

/* Read-only "what your rack space includes" rows in the colocation configurator */
.field-info { grid-template-columns: 98px 1fr; align-items: center; padding: .18rem 0; border-bottom: 1px dashed var(--line); }
.field-info .label { font-weight: 600; font-size: .9rem; color: var(--muted); }
.field-info .value { font-size: .9rem; font-weight: 600; color: var(--green); text-align: left; }
@media (max-width: 480px) { .field-info { grid-template-columns: 84px 1fr; } }

/* Colocation configurator: heading matches the price figure */
.config-card-lg .config-head h3 { font-size: 1.7rem; line-height: 1; margin: 0 0 .25rem; }
@media (max-width: 480px) { .config-card-lg .config-head h3 { font-size: 1.5rem; } }
