/* ==========================================================================
   Webs4U site styles
   Single stylesheet, no framework, no build step. Edit and upload.
   Palette carries over the existing Webs4U navy/blue so emails and the
   client portal still look like the same company.
   ========================================================================== */

:root {
  /* Brand colours, sampled from the real logo (cropped-webs4u-2048x350.png).
     These three are exact: #002060 is the WEBS navy, #8FAADC the "4",
     #00B0F0 the "U". */
  --navy:        #002060;
  --navy-700:    #0a2f7a;
  --navy-300:    #8faadc;
  --navy-100:    #e0e7f5;
  --navy-50:     #f4f7fd;

  /* The logo cyan. Gorgeous on navy, and only 2.2:1 against white, so it is
     used for accents on dark backgrounds, never behind white text. */
  --brand-cyan:  #00b0f0;
  --cyan-tint:   #e2f6fe;

  /* Interactive blue. Deliberately darker than the logo cyan so white button
     text clears WCAG AA (5.9:1). Do not "correct" this to #00B0F0, button
     labels would drop to 2.2:1 and become genuinely hard to read. */
  --accent:      #146a9f;
  --accent-dark: #0f5279;

  --green:       #0a6a48;
  --green-bg:    #e6f6ef;
  --amber:       #9a5a07;
  --amber-bg:    #fdf3e3;
  --red:         #c0392b;
  --red-bg:      #fdeceb;

  --ink:         #17203a;
  --ink-soft:    #5b6478;
  --line:        #dde4f0;
  --white:       #ffffff;

  --radius:      10px;
  --radius-lg:   16px;
  --shadow-sm:   0 1px 2px rgba(23, 32, 58, .06), 0 2px 8px rgba(23, 32, 58, .05);
  --shadow-md:   0 4px 12px rgba(23, 32, 58, .08), 0 12px 32px rgba(23, 32, 58, .07);
  --shadow-lg:   0 12px 40px rgba(0, 32, 96, .16);

  --container:   1120px;
  --font:        'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

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

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

body {
  margin: 0;
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

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

h1, h2, h3, h4 { line-height: 1.2; margin: 0 0 .5em; font-weight: 700; letter-spacing: -.02em; }
h1 { font-size: clamp(2rem, 5vw, 3.1rem); }
h2 { font-size: clamp(1.5rem, 3.2vw, 2.1rem); }
h3 { font-size: 1.2rem; }

p { margin: 0 0 1em; }
a { color: var(--accent); text-decoration-thickness: 1px; text-underline-offset: 2px; }
a:hover { color: var(--accent-dark); }

:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 2px;
  border-radius: 4px;
}

.skip {
  position: absolute; left: -9999px;
  background: var(--navy); color: #fff; padding: .8rem 1.2rem; z-index: 100;
}
.skip:focus { left: 1rem; top: 1rem; }

/* --- layout --------------------------------------------------------------- */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 20px; }
.container--slim { max-width: 720px; }

.section { padding: clamp(3rem, 7vw, 5.5rem) 0; }
.section--narrow { padding: clamp(2rem, 5vw, 3.5rem) 0; }
.section--tint { background: var(--navy-50); }
.section--navy { background: var(--navy); color: #fff; }
.section--navy h2 { color: #fff; }

.centred { text-align: center; }
.muted { color: var(--ink-soft); }
.small { font-size: .9rem; }

/* --- header --------------------------------------------------------------- */
.masthead {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255, 255, 255, .92);
  backdrop-filter: saturate(160%) blur(10px);
  border-bottom: 1px solid var(--line);
}
.masthead__inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; min-height: 68px;
}
.brand { display: flex; align-items: center; }

.nav__list {
  display: flex; align-items: center; gap: 1.6rem;
  list-style: none; margin: 0; padding: 0;
}
.nav__list a {
  color: var(--ink); text-decoration: none; font-weight: 500; font-size: .97rem;
}
.nav__list a:hover { color: var(--accent); }
.nav__list a[aria-current="page"] { color: var(--navy); font-weight: 600; }
.nav__sep { border-left: 1px solid var(--line); padding-left: 1.6rem; }

.navtoggle { display: none; }

@media (max-width: 860px) {
  .navtoggle {
    display: flex; flex-direction: column; justify-content: center; gap: 5px;
    width: 44px; height: 44px; padding: 0 10px;
    background: none; border: 1px solid var(--line); border-radius: 8px; cursor: pointer;
  }
  .navtoggle span { display: block; height: 2px; background: var(--ink); border-radius: 2px; }

  .nav {
    position: absolute; top: 100%; left: 0; right: 0;
    background: #fff; border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-md);
    display: none;
  }
  .nav.is-open { display: block; }
  .nav__list { flex-direction: column; align-items: stretch; gap: 0; padding: .5rem 20px 1.2rem; }
  .nav__list li { border-top: 1px solid var(--line); }
  .nav__list li:first-child { border-top: 0; }
  .nav__list a { display: block; padding: .9rem 0; }
  .nav__sep { border-left: 0; padding-left: 0; }
  .nav__list .btn { margin-top: .8rem; text-align: center; }
}

/* --- buttons -------------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  padding: .82rem 1.5rem;
  font: inherit; font-weight: 600; font-size: 1rem;
  border: 1px solid transparent; border-radius: var(--radius);
  cursor: pointer; text-decoration: none;
  transition: transform .12s ease, box-shadow .12s ease, background-color .12s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn--primary { background: var(--accent); color: #fff; box-shadow: var(--shadow-sm); }
.btn--primary:hover { background: var(--accent-dark); color: #fff; box-shadow: var(--shadow-md); }

.btn--navy { background: var(--navy); color: #fff; }
.btn--navy:hover { background: var(--navy-700); color: #fff; }

.btn--ghost { background: transparent; color: var(--navy); border-color: var(--line); }
.btn--ghost:hover { background: var(--navy-50); color: var(--navy); }

/* Outlined button for use ON a dark background (the navy CTA bands, the hero).
   Do not reach for .btn--ghost there and patch the colour inline: its hover
   fills with a near-white background, and white text on near-white is
   invisible. That is a real bug that shipped once already. */
.btn--outline-light {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, .38);
}
.btn--outline-light:hover {
  background: rgba(255, 255, 255, .14);
  border-color: rgba(255, 255, 255, .7);
  color: #fff;
}

.btn--light { background: #fff; color: var(--navy); }
.btn--light:hover { background: var(--navy-100); color: var(--navy); }

.btn--sm { padding: .55rem 1rem; font-size: .92rem; }
.btn--lg { padding: 1.05rem 2rem; font-size: 1.08rem; }
.btn--block { width: 100%; }
.btn[disabled] { opacity: .55; cursor: not-allowed; transform: none; }

/* --- hero ----------------------------------------------------------------- */
.hero {
  background: linear-gradient(165deg, var(--navy) 0%, var(--navy-700) 55%, #14459c 100%);
  color: #fff;
  padding: clamp(3rem, 8vw, 5.5rem) 0 clamp(3.5rem, 8vw, 5rem);
  position: relative; overflow: hidden;
}
.hero::after {
  content: ''; position: absolute; inset: auto -10% -55% 45%;
  height: 520px; border-radius: 50%;
  background: radial-gradient(circle, rgba(143, 170, 220, .30), transparent 68%);
  pointer-events: none;
}
.hero__inner { position: relative; z-index: 1; max-width: 780px; }
.hero h1 { color: #fff; margin-bottom: .35em; }
.hero__lead { font-size: clamp(1.05rem, 2vw, 1.28rem); color: #d6e2f7; margin-bottom: 2rem; max-width: 620px; }
.hero__eyebrow {
  display: inline-block; margin-bottom: 1rem;
  background: rgba(255, 255, 255, .12); border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 999px; padding: .35rem 1rem;
  font-size: .85rem; font-weight: 600; letter-spacing: .02em; color: #dbe6fa;
}
.hero__trust {
  display: flex; flex-wrap: wrap; gap: 1.2rem 2rem;
  margin-top: 2.2rem; padding-top: 1.6rem;
  border-top: 1px solid rgba(255, 255, 255, .16);
  font-size: .92rem; color: #cfdcf4;
}
.hero__trust span { display: flex; align-items: center; gap: .5rem; }
.hero__trust span::before { content: '✓'; color: var(--brand-cyan); font-weight: 700; }

/* --- domain search -------------------------------------------------------- */
.search { margin-top: .5rem; }
.search__form {
  display: flex; gap: .5rem; flex-wrap: wrap;
  background: #fff; padding: .5rem;
  border-radius: var(--radius-lg); box-shadow: var(--shadow-lg);
}
.search__input {
  flex: 1 1 260px; min-width: 0;
  border: 0; background: transparent;
  padding: .95rem 1rem; font: inherit; font-size: 1.05rem; color: var(--ink);
}
.search__input::placeholder { color: #9aa3b8; }
.search__input:focus { outline: none; }
.search__tld {
  border: 0; border-left: 1px solid var(--line); background: transparent;
  padding: .95rem .8rem; font: inherit; font-size: 1rem; color: var(--ink); cursor: pointer;
}
.search__tld:focus { outline: none; }
.search__btn { flex: 0 0 auto; }

.search__hint { margin-top: .9rem; font-size: .9rem; color: #c2d1ec; }
.section--tint .search__hint,
.section .search__hint { color: var(--ink-soft); }

/* results */
.results { margin-top: 1.25rem; }
.results:empty { display: none; }

.result {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; flex-wrap: wrap;
  background: #fff; color: var(--ink);
  border: 1px solid var(--line); border-left-width: 4px;
  border-radius: var(--radius); padding: 1.1rem 1.3rem;
  margin-bottom: .6rem; box-shadow: var(--shadow-sm);
}
.result--available { border-left-color: var(--green); }
.result--taken     { border-left-color: var(--red); }
.result--unknown   { border-left-color: var(--amber); }

.result__name { font-size: 1.15rem; font-weight: 700; word-break: break-all; }
.result__status { font-size: .88rem; font-weight: 600; margin-top: .1rem; }
.result--available .result__status { color: var(--green); }
.result--taken     .result__status { color: var(--red); }
.result--unknown   .result__status { color: var(--amber); }
.result__price { font-size: 1.05rem; font-weight: 700; margin-right: .4rem; white-space: nowrap; }
.result__price span { font-weight: 500; color: var(--ink-soft); font-size: .85rem; }
.result__action { display: flex; align-items: center; gap: .8rem; flex-wrap: wrap; }

.results__heading {
  margin: 1.4rem 0 .7rem; font-size: .9rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .06em; color: var(--ink-soft);
}
.hero .results__heading { color: #b9caea; }

.spinner {
  display: inline-block; width: 18px; height: 18px;
  border: 2px solid rgba(255, 255, 255, .4); border-top-color: #fff;
  border-radius: 50%; animation: spin .7s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
@media (prefers-reduced-motion: reduce) {
  .spinner { animation-duration: 2s; }
  html { scroll-behavior: auto; }
  .btn:hover { transform: none; }
}

/* --- cards / grids -------------------------------------------------------- */
.grid { display: grid; gap: 1.4rem; }
.grid--3 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.grid--4 { grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); }

.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 1.8rem; box-shadow: var(--shadow-sm);
}
.card__icon {
  width: 44px; height: 44px; border-radius: 12px;
  background: var(--navy-100); color: var(--navy);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; margin-bottom: 1rem;
}
.card h3 { margin-bottom: .4rem; }
.card p:last-child { margin-bottom: 0; }

/* pricing cards */
.plan {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 1.9rem 1.6rem; display: flex; flex-direction: column;
  box-shadow: var(--shadow-sm); position: relative;
}
.plan--featured {
  border-color: var(--accent); border-width: 2px;
  box-shadow: var(--shadow-md); transform: translateY(-6px);
}
.plan__flag {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--navy); color: #fff;
  font-size: .74rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
  padding: .3rem .9rem; border-radius: 999px; white-space: nowrap;
}
.plan__name { font-size: 1.15rem; font-weight: 700; margin-bottom: .2rem; }
.plan__blurb { color: var(--ink-soft); font-size: .93rem; min-height: 2.9em; margin-bottom: 1.1rem; }
.plan__price { font-size: 2.3rem; font-weight: 700; letter-spacing: -.03em; line-height: 1; }
.plan__period { color: var(--ink-soft); font-size: .9rem; margin-bottom: 1.3rem; }
.plan__features { list-style: none; margin: 0 0 1.6rem; padding: 0; flex: 1; }
.plan__features li {
  padding: .42rem 0 .42rem 1.6rem; position: relative; font-size: .95rem;
  border-bottom: 1px solid var(--navy-50);
}
.plan__features li::before {
  content: '✓'; position: absolute; left: 0; top: .42rem;
  color: var(--green); font-weight: 700;
}

@media (max-width: 860px) {
  .plan--featured { transform: none; }
}

/* --- steps / panels ------------------------------------------------------- */
.panel {
  border-radius: var(--radius-lg); padding: 2rem;
  margin-bottom: 1.8rem; text-align: center;
}
.panel--success { background: var(--green-bg); border: 1px solid #b9e5d1; }
.panel--warn    { background: var(--amber-bg); border: 1px solid #f0d9ae; }
.panel--error   { background: var(--red-bg);   border: 1px solid #f3c3bf; }
.panel__icon {
  width: 56px; height: 56px; margin: 0 auto 1rem; border-radius: 50%;
  background: var(--green); color: #fff;
  display: flex; align-items: center; justify-content: center; font-size: 1.7rem;
}
.panel__eyebrow {
  font-size: .82rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .07em; color: var(--green); margin-bottom: .4rem;
}
.panel__title { margin-bottom: .4rem; font-size: clamp(1.5rem, 3.5vw, 2rem); }
.panel__lead { color: var(--ink-soft); margin-bottom: 0; }

.steps { background: var(--navy-50); border-radius: var(--radius-lg); padding: 1.8rem; margin-bottom: 1.8rem; }
.steps__title { font-size: 1.1rem; margin-bottom: 1rem; }
.steps__list { margin: 0; padding-left: 1.3rem; }
.steps__list li { margin-bottom: .8rem; }
.steps__list li:last-child { margin-bottom: 0; }

/* --- forms ---------------------------------------------------------------- */
.form { background: #fff; }
.form__group { margin-bottom: 1.3rem; }
.form__row { display: grid; gap: 1.3rem; grid-template-columns: 1fr 1fr; }
@media (max-width: 640px) { .form__row { grid-template-columns: 1fr; } }

.form__label { display: block; font-weight: 600; font-size: .93rem; margin-bottom: .4rem; }
.form__label .req { color: var(--red); }
.form__hint { font-size: .85rem; color: var(--ink-soft); margin-top: .35rem; }

.form__input, .form__select, .form__textarea {
  width: 100%; padding: .8rem .9rem;
  font: inherit; font-size: 1rem; color: var(--ink);
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  transition: border-color .12s ease, box-shadow .12s ease;
}
.form__input:focus, .form__select:focus, .form__textarea:focus {
  outline: none; border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(28, 135, 201, .16);
}
.form__textarea { min-height: 96px; resize: vertical; }

.form__check { display: flex; gap: .7rem; align-items: flex-start; margin-bottom: .9rem; font-size: .93rem; }
.form__check input { margin-top: .3rem; width: 18px; height: 18px; flex: 0 0 auto; accent-color: var(--accent); }

.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.errors {
  background: var(--red-bg); border: 1px solid #f3c3bf; border-radius: var(--radius);
  padding: 1.1rem 1.3rem; margin-bottom: 1.6rem;
}
.errors h2 { font-size: 1rem; margin-bottom: .5rem; color: var(--red); }
.errors ul { margin: 0; padding-left: 1.2rem; }
.errors li { margin-bottom: .3rem; }

/* option cards (hosting choice inside the order form) */
.options { display: grid; gap: .8rem; }
.option {
  display: flex; gap: .9rem; align-items: flex-start;
  border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.1rem 1.2rem; cursor: pointer;
  transition: border-color .12s ease, background-color .12s ease;
}
.option:hover { border-color: var(--navy-300); background: var(--navy-50); }
.option input { margin-top: .25rem; width: 18px; height: 18px; flex: 0 0 auto; accent-color: var(--accent); }
.option:has(input:checked) { border-color: var(--accent); background: #f2f9fd; box-shadow: 0 0 0 1px var(--accent); }
.option__body { flex: 1; }
.option__name { font-weight: 700; display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }
.option__price { color: var(--navy); white-space: nowrap; }
.option__blurb { font-size: .9rem; color: var(--ink-soft); margin: .2rem 0 0; }

/* --- order summary -------------------------------------------------------- */
.summary {
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: 1.8rem; box-shadow: var(--shadow-sm);
}
.summary__title { font-size: 1.15rem; margin-bottom: 1rem; }
.summary__list { margin: 0 0 1.5rem; }
.summary__row {
  display: flex; justify-content: space-between; gap: 1rem;
  padding: .7rem 0; border-bottom: 1px solid var(--navy-50);
}
/* display:flex above beats the UA stylesheet's [hidden]{display:none}, so the
   hosting row would stay visible when empty without this. */
.summary__row[hidden] { display: none; }
.summary__row dt { color: var(--ink-soft); margin: 0; }
.summary__row dd { margin: 0; font-weight: 600; white-space: nowrap; }
.summary__row--total {
  border-bottom: 0; border-top: 2px solid var(--line);
  margin-top: .4rem; padding-top: 1rem; font-size: 1.2rem;
}
.summary__row--total dt { color: var(--ink); font-weight: 700; }
.summary__row--total dd { font-weight: 700; color: var(--navy); }
.summary__fineprint { font-size: .85rem; color: var(--ink-soft); margin: 1.1rem 0 0; text-align: center; }

.notice { border-radius: var(--radius); padding: .9rem 1.1rem; font-size: .9rem; margin: 1.1rem 0 0; }
.notice--warn { background: var(--amber-bg); border: 1px solid #f0d9ae; color: #6b4508; }
.notice code { background: rgba(0, 0, 0, .06); padding: .1rem .35rem; border-radius: 4px; font-size: .92em; }

/* --- faq ------------------------------------------------------------------ */
.faq { border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); padding: 1.1rem 0; }
.faq summary {
  cursor: pointer; font-weight: 600; font-size: 1.03rem;
  list-style: none; display: flex; justify-content: space-between; gap: 1rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: '+'; color: var(--accent); font-size: 1.4rem; line-height: 1; }
.faq details[open] summary::after { content: '−'; }
.faq details p { margin: .8rem 0 0; color: var(--ink-soft); }

/* --- cta band ------------------------------------------------------------- */
.cta { text-align: center; }
.cta h2 { margin-bottom: .5rem; }
.cta p { color: #c8d7f2; max-width: 560px; margin: 0 auto 1.8rem; }
.cta__actions { display: flex; gap: .8rem; justify-content: center; flex-wrap: wrap; }

/* --- footer --------------------------------------------------------------- */
.footer { background: var(--navy); color: #c5d3ec; margin-top: 0; }
.footer__inner {
  display: grid; gap: 2.4rem; padding-top: 3.4rem; padding-bottom: 2.6rem;
  grid-template-columns: 1.4fr 2fr 1fr;
}
@media (max-width: 900px) { .footer__inner { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .footer__inner { grid-template-columns: 1fr; } }

.footer__tagline { font-size: .92rem; margin-top: 1rem; max-width: 30ch; }
.footer__cols { display: grid; gap: 2rem; grid-template-columns: repeat(3, 1fr); }
@media (max-width: 600px) { .footer__cols { grid-template-columns: repeat(2, 1fr); } }

.footer h2 {
  font-size: .8rem; text-transform: uppercase; letter-spacing: .08em;
  color: #fff; margin-bottom: .9rem;
}
.footer ul { list-style: none; margin: 0; padding: 0; }
.footer li { margin-bottom: .55rem; }
.footer a { color: #c5d3ec; text-decoration: none; font-size: .93rem; }
.footer a:hover { color: var(--brand-cyan); text-decoration: underline; }
.footer__pay { display: flex; align-items: center; gap: .6rem; font-size: .82rem; margin-top: 1.2rem; }
.footer__pay img { opacity: .85; }

.footer__base { border-top: 1px solid rgba(255, 255, 255, .12); }
.footer__baseinner {
  display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap;
  padding-top: 1.2rem; padding-bottom: 1.2rem;
}
.footer__base p { margin: 0; font-size: .84rem; color: #93a8cd; }

/* --- renewal price notes -------------------------------------------------- */
/* Some registries charge far more from year two. That has to be visible on the
   card, not buried in the terms. */
.renewnote {
  margin-top: .6rem; padding-top: .55rem;
  border-top: 1px dashed var(--line);
  font-size: .84rem; font-weight: 600; color: var(--ink-soft);
}
.renewnote--warn { color: var(--amber); }
.card--teaser { border-color: #f0d9ae; background: #fffdf8; }

.result__renew {
  display: block; font-size: .78rem; font-weight: 500;
  color: var(--ink-soft); margin-top: .1rem;
}
.result__renew--warn { color: var(--amber); }


/* --- domain extension price cards ----------------------------------------
   The extension is the thing people scan for, so it gets the brand cyan.
   Cyan is used as a BACKGROUND with navy text (6.2:1), not as text on white,
   where it would only reach 2.5:1 and fail contrast.
   ------------------------------------------------------------------------- */
.tldcard {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.6rem 1rem 1.35rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: transform .14s ease, box-shadow .14s ease, border-color .14s ease;
}
.tldcard:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--navy-300);
}

/* Cyan edge along the top. Decorative, so no contrast requirement. */
.tldcard::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--brand-cyan);
}

.tldcard__tld {
  display: inline-block;
  background: var(--cyan-tint);
  color: var(--navy);
  font-size: 1rem; font-weight: 700; letter-spacing: -.01em;
  padding: .26rem .85rem;
  border-radius: 999px;
  margin-bottom: .8rem;
}

.tldcard__price {
  font-size: 1.95rem; font-weight: 700; line-height: 1;
  letter-spacing: -.03em; color: var(--navy);
}
.tldcard__period { font-size: .82rem; color: var(--ink-soft); margin-top: .4rem; }

/* The two extensions most people actually want get the full cyan treatment. */
.tldcard--popular { border-color: var(--brand-cyan); }
.tldcard--popular::before { height: 5px; }
.tldcard--popular .tldcard__tld { background: var(--brand-cyan); color: var(--navy); }

/* Cheap to register, expensive to renew. Amber edge instead of cyan. */
.tldcard--teaser::before { background: var(--amber); }
.tldcard--teaser { background: #fffdf8; border-color: #f0d9ae; }
.tldcard--teaser .tldcard__tld { background: var(--amber-bg); color: #6b3f05; }

.tldcard__renew {
  margin-top: .7rem; padding-top: .6rem;
  border-top: 1px dashed var(--line);
  font-size: .83rem; font-weight: 600; color: var(--ink-soft);
}
.tldcard--teaser .tldcard__renew { color: var(--amber); border-top-color: #f0d9ae; }

/* --- obfuscated email links ----------------------------------------------
   Before site.js runs, the fallback reads "sales (at) webs4u.co.za". Once
   wired, JS replaces the text with the real address and sets the href. */
.maillink { word-break: break-word; }
.maillink__at { font-style: normal; }
a.maillink:not([href]), a.maillink[href="#"] { cursor: pointer; }
