:root {
  --black: #0E0E10;
  --ink: #17171B;
  --green: #48E22E;
  --green-ink: #2CB414;
  --grey: #6E6E72;
  --grey-2: #9A9AA0;
  --line: #E6E6E6;
  --line-dark: #26262B;
  --off: #F4F4F2;
  --orange: #F26B1F;
  --canvas: #DEDEE2;
}

* { box-sizing: border-box; }

html, body {
  margin: 0; padding: 0;
  background: #fff;
  font-family: "Inter", system-ui, -apple-system, Segoe UI, Helvetica, Arial, sans-serif;
  color: var(--black);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-size: 17px;
  line-height: 1.55;
}

/* --- NAV --- */
.nav {
  background: var(--black); color: #fff;
  padding: 0 48px; height: 88px;
  display: flex; justify-content: center;
  position: sticky; top: 0; z-index: 100;
}
.nav-inner {
  width: 100%; max-width: 1290px;
  display: flex; align-items: center; justify-content: space-between;
}
.logo { display: flex; align-items: center; gap: 10px; }
.logo img { height: 38px; width: auto; display: block; }
.nav-tel {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--green); text-decoration: none; font-size: 20px; font-weight: 700;
  letter-spacing: .01em; white-space: nowrap;
}
.nav-tel:hover { color: #fff; }
.footer .logo img { height: 28px; }
.nav ul { list-style: none; display: flex; align-items: stretch; gap: 32px; margin: 0; padding: 0; }
.nav ul li { display: flex; align-items: center; }
.nav ul li > a { display: flex; align-items: center; height: 100%; }
.nav a { color: #E9E9EB; text-decoration: none; font-size: 14px; font-weight: 500; }
.nav a:hover { color: #fff; }
.nav-item-dropdown { position: relative; }
.nav-dropdown-toggle { display: flex; align-items: center; gap: 6px; }
.nav-dropdown-toggle::after { content: ''; display: block; width: 6px; height: 6px; border-right: 1.5px solid currentColor; border-bottom: 1.5px solid currentColor; transform: rotate(45deg) translate(-1px, -1px); transition: transform .2s; }
.nav-item-dropdown:hover .nav-dropdown-toggle::after { transform: rotate(-135deg) translate(-1px, -1px); }
.nav .nav-dropdown { position: absolute; top: 100%; left: 0; flex-direction: column; gap: 0; background: #1a1a1d; border-radius: 8px; min-width: 200px; list-style: none; margin: 0; padding: 20px 0 8px; display: none; box-shadow: 0 8px 24px rgba(0,0,0,.3); z-index: 100; }
.nav-item-dropdown:hover .nav-dropdown { display: flex; }
.nav-item-dropdown:hover .nav-dropdown-toggle::before { content: ''; position: absolute; top: 100%; left: 0; right: 0; height: 20px; }
.nav .nav-dropdown li { width: 100%; }
.nav .nav-dropdown li a { padding: 10px 16px; display: block; white-space: nowrap; }
.nav .nav-dropdown li a:hover { background: rgba(255,255,255,.08); }
.cta {
  background: var(--green); color: #000 !important; font-weight: 700; font-size: 13px;
  padding: 13px 20px; border-radius: 999px; text-decoration: none; letter-spacing: .12em; text-transform: uppercase;
  display: inline-flex; align-items: center; gap: 10px;
}
.cta:hover { background: #fff; color: #000 !important; }
.cta .arrow { display: inline-block; transform: translateY(-1px); }
.nav-phone-btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 18px; border-radius: 999px; text-decoration: none;
  font-weight: 700; font-size: 13px; letter-spacing: .04em;
  color: var(--green) !important; border: 1px solid var(--green); background: transparent;
  white-space: nowrap;
}
.nav-phone-btn:hover { background: rgba(72,226,46,.08); color: var(--green) !important; }
.nav-cta-group { display: inline-flex; align-items: center; gap: 10px; }
.nav-right { display: flex; align-items: center; justify-content: flex-end; }
.nav-links { display: flex; align-items: center; gap: 36px; }

/* --- HERO --- */
.hero {
  position: relative; color: #fff; min-height: 860px; overflow: hidden; padding-bottom: 120px;
  background: #0E0E10 url('/images/DSC_6179.webp') center/cover no-repeat;
}
.hero::before {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(14,14,16,.82) 0%, rgba(14,14,16,.55) 45%, rgba(14,14,16,.25) 75%, rgba(14,14,16,.05) 100%),
    linear-gradient(180deg, rgba(14,14,16,.15) 0%, rgba(14,14,16,.1) 60%, rgba(14,14,16,.85) 100%);
}
.hero-inner { position: relative; max-width: 1290px; margin: 0 auto; padding: 52px 48px 0; z-index: 2; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  color: var(--green); font-size: 13px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  padding: 8px 14px; border: 1px solid rgba(72,226,46,.45); border-radius: 999px; background: rgba(10,10,12,.62);
  margin-bottom: 28px;
}
.eyebrow .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 3px rgba(72,226,46,.25); }
.hero-display {
  font-size: 88px; line-height: .96; letter-spacing: -.03em; font-weight: 800; margin: 0 0 24px; color: #fff;
  max-width: 700px;
}
.hero h1 {
  font-size: 26px; line-height: 1.35; letter-spacing: -.01em; font-weight: 700; margin: 0; color: #fff;
  max-width: 620px; border-left: 2px solid var(--green); padding-left: 14px;
}
.hero h1 em { font-style: normal; color: var(--green); }
.hero .sub {
  margin-top: 22px; color: #CFCFD2; font-size: 20px; line-height: 1.5; max-width: 640px; font-weight: 400;
}
.hero-actions { display: flex; gap: 14px; margin-top: 36px; }
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 15px 22px; border-radius: 999px; font-weight: 700; font-size: 15px; text-decoration: none; letter-spacing: .01em;
  border: none; cursor: pointer; white-space: nowrap;
}
.btn-green, a.btn-green, .prose a.btn-green { background: var(--green); color: #0E0E10; }
.btn-ghost { background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,.7); }
.hero-logos {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 2;
  padding: 28px 48px; display: flex; align-items: center; gap: 10px;
  background: linear-gradient(180deg, rgba(14,14,16,0) 0%, rgba(14,14,16,.88) 100%);
  max-width: 1290px; margin: 0 auto;
}
.hero-logos .chip {
  flex: 1;
  display: flex; align-items: center; justify-content: center; gap: 8px;
  padding: 10px 8px;
  border: 1px solid rgba(72,226,46,.35);
  border-radius: 8px;
  color: #FFFFFF;
  font-size: 12px; letter-spacing: .12em; text-transform: uppercase; font-weight: 700;
  background: #15151A;
  white-space: nowrap;
}
.hero-logos .chip::before {
  content: "";
  display: inline-block;
  width: 14px; height: 14px; flex-shrink: 0;
  background-color: var(--green);
  border-radius: 50%;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath d='M2 6l3 3 5-5' stroke='%23000' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3C/svg%3E") center/10px no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath d='M2 6l3 3 5-5' stroke='%23000' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3C/svg%3E") center/10px no-repeat;
}

/* --- PROOF BAR --- */
.proof { background: var(--black); color: #fff; padding: 80px 48px; }
.proof-inner { max-width: 1290px; margin: 0 auto; display: grid; grid-template-columns: repeat(5, 1fr); gap: 32px; }
.stat .num { font-size: 72px; line-height: 1; letter-spacing: -.03em; font-weight: 800; color: var(--green); display: block; }
.stat .cap { margin-top: 16px; color: #B5B5BA; font-size: 14px; font-weight: 500; max-width: 220px; line-height: 1.45; }
.stat .rule { width: 32px; height: 2px; background: var(--green); margin: 20px 0 18px; opacity: .6; }

/* --- SECTION HEAD --- */
.section { padding: 120px 48px; }
.section-inner { max-width: 1290px; margin: 0 auto; }
.section-head { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 56px; gap: 40px; }
.kicker { font-size: 12px; letter-spacing: .22em; text-transform: uppercase; color: var(--grey); font-weight: 700; margin-bottom: 14px; }
.kicker.on-dark { color: var(--green); }
h2 { font-size: 48px; line-height: 1.08; letter-spacing: -.02em; font-weight: 800; margin: 0; max-width: 720px; }
h2.on-dark { color: #fff; }
.see-all { color: var(--green); font-weight: 700; text-decoration: none; font-size: 15px; letter-spacing: .02em; white-space: nowrap; }

/* --- SERVICES --- */
.services { background: var(--off); }
.svc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.card {
  background: #fff; border: 1px solid #EAEAE7; border-radius: 12px;
  display: flex; flex-direction: column; min-height: 260px; position: relative; overflow: hidden;
}
.card .photo { height: 200px; background: #1a1a1e center/cover no-repeat; position: relative; }
.card .photo::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(14,14,16,0) 50%, rgba(14,14,16,.25) 100%); }
.card .tag {
  position: absolute; top: 16px; left: 16px; z-index: 2;
  color: var(--green); font-size: 11px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  padding: 6px 10px; background: rgba(14,14,16,.7); border-radius: 999px; border: 1px solid rgba(72,226,46,.4);
}
.card .body { padding: 28px 32px 32px; display: flex; flex-direction: column; flex: 1; }
.card h3 { margin: 0 0 10px; font-size: 24px; font-weight: 700; letter-spacing: -.01em; }
.card p { color: var(--grey); margin: 0; font-size: 16px; line-height: 1.55; max-width: 440px; }
.card .more {
  margin-top: auto; padding-top: 24px; color: var(--black); font-weight: 700; font-size: 14px; text-decoration: none;
  display: inline-flex; align-items: center; gap: 8px; letter-spacing: .02em;
}
.card .more .a { color: var(--green); }
.card-cta { background: var(--black); color: #fff; border-color: #22222A; justify-content: space-between; }
.card-cta .body { padding: 32px; }
.card-cta .icon { width: 56px; height: 56px; color: var(--green); margin-bottom: 28px; }
.card-cta h3 { color: #fff; font-size: 22px; margin-bottom: 10px; max-width: 280px; line-height: 1.2; }
.card-cta p { color: #B5B5BA; font-size: 15px; max-width: 320px; }
.card-cta .more { color: var(--green); }
.card-cta .more .a { color: var(--green); }
.card-cta .pill {
  align-self: flex-start; color: var(--green); font-size: 11px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  padding: 6px 10px; border-radius: 999px; border: 1px solid rgba(72,226,46,.4); background: rgba(72,226,46,.06); margin-bottom: 28px;
}

/* --- CREDENTIALS --- */
.creds { background: #fff; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 72px 48px; }
.creds-inner { max-width: 1290px; margin: 0 auto; display: grid; grid-template-columns: 1.1fr 1fr; gap: 64px; align-items: center; }
.creds p { margin: 0; color: var(--black); font-size: 18px; line-height: 1.55; max-width: 560px; }
.creds p strong { font-weight: 700; }
.codes { display: flex; flex-wrap: wrap; gap: 12px; justify-content: flex-end; }
.code {
  font-family: "JetBrains Mono", monospace; font-size: 13px; font-weight: 500; letter-spacing: .02em;
  padding: 10px 14px; border: 1px solid var(--line); border-radius: 6px; background: #FAFAF9; color: var(--black);
}
.code .dot { display: inline-block; width: 6px; height: 6px; border-radius: 50%; background: var(--green); margin-right: 8px; vertical-align: middle; transform: translateY(-1px); }

/* --- CASE STUDIES --- */
.cases { background: var(--black); color: #fff; }
.cases .section-head { margin-bottom: 56px; }
.case-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.case {
  background: #17171B; border: 1px solid #22222A; border-radius: 12px; overflow: hidden; display: flex; flex-direction: column;
}
.case-img { height: 240px; position: relative; background: #222 center/cover no-repeat; }
.case-img::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,0) 40%, rgba(0,0,0,.6) 100%); }
.case-route { position: absolute; top: 16px; left: 16px; z-index: 2; color: var(--green); font-size: 12px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; padding: 6px 10px; background: rgba(14,14,16,.7); border-radius: 999px; border: 1px solid rgba(72,226,46,.4); }
.case-body { padding: 24px 28px 28px; display: flex; flex-direction: column; gap: 16px; flex: 1; }
.case-body h3 { font-size: 20px; line-height: 1.25; margin: 0; font-weight: 700; color: #fff; }
.kpi {
  margin-top: auto; display: inline-flex; align-items: center; gap: 12px;
  font-size: 13px; color: #B5B5BA; font-family: "JetBrains Mono", monospace; letter-spacing: .02em;
}
.kpi .sep { color: #3A3A40; }
.kpi .big { color: #fff; font-weight: 500; }

/* --- HOW WE WORK --- */
.how { background: var(--off); }
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; position: relative; }
.step {
  background: #fff; border: 1px solid #EAEAE7; border-radius: 12px; padding: 40px 36px; position: relative;
}
.step .n {
  display: inline-flex; align-items: center; gap: 10px; font-family: "JetBrains Mono", monospace; font-size: 12px; color: var(--grey); letter-spacing: .12em; font-weight: 500;
}
.step .n span { color: var(--green); font-weight: 700; }
.step .pic { display: block; width: 140px; height: 140px; margin: 28px auto 28px; color: var(--black); }
.step h3 { font-size: 26px; letter-spacing: -.01em; margin: 0 0 10px; font-weight: 700; }
.step p { color: var(--grey); margin: 0; font-size: 16px; line-height: 1.55; }
.step .conn { position: absolute; left: 100%; top: 50%; transform: translateY(-50%); width: 32px; height: 2px; background: var(--green); }
.step:last-child .conn { display: none; }

/* --- CONTACT --- */
.contact { background: var(--black); }
.contact-inner {
  max-width: 1290px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
}
.contact-left { background: var(--black); color: #fff; padding: 120px 72px; }
.contact-left .kicker { color: var(--green); }
.contact-left h2 { font-size: 44px; max-width: 420px; color: #fff; }
.contact-left .meta { margin-top: 40px; padding-top: 32px; border-top: 1px solid #26262B; color: #9A9AA0; font-size: 14px; display: grid; grid-template-columns: auto 1fr; gap: 10px 24px; }
.contact-left .meta strong { color: #fff; font-weight: 600; }
.contact-right { background: var(--off); padding: 120px 72px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-grid[hidden] { display: none; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field.full { grid-column: 1 / -1; }
.field label { font-size: 12px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--grey); }
.field .inp {
  background: #fff; border: 1px solid var(--line); border-radius: 8px; padding: 14px 16px; font-size: 15px; color: var(--black);
  font-family: inherit; width: 100%;
}
.field textarea.inp { min-height: 120px; resize: vertical; }
.form-cta { margin-top: 16px; display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.form-cta .note { color: var(--grey); font-size: 13px; max-width: 320px; }

/* --- COVERAGE --- */
.coverage { background: #fff; border-top: 1px solid var(--line); position: relative; }
.coverage::before { content: ''; position: absolute; right: 0; top: 0; width: 50%; height: 100%; background: url('/images/uk-network.webp') center/contain no-repeat; opacity: 1; pointer-events: none; z-index: 0; }
.cov-inner { position: relative; z-index: 1; }
.cov-inner { max-width: 1290px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1.4fr; gap: 80px; align-items: start; }
.cov-inner h2 { font-size: 40px; margin-bottom: 20px; }
.cov-inner > div > p { color: var(--grey); font-size: 17px; max-width: 460px; margin: 0; }
.cov-meta { margin-top: 32px; display: grid; grid-template-columns: auto 1fr; gap: 10px 24px; font-size: 14px; }
.cov-meta strong { color: var(--black); font-weight: 700; }
.cov-meta span { color: var(--grey); }
.routes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.route {
  border: 1px solid var(--line); border-radius: 8px; padding: 18px 20px; background: rgba(250,250,249,.95);
  display: flex; flex-direction: column; gap: 4px;
}
.route .code { font-family: "JetBrains Mono", monospace; font-size: 11px; color: var(--green-ink); letter-spacing: .14em; text-transform: uppercase; font-weight: 600; }
.route .name { font-size: 15px; font-weight: 700; color: var(--black); }
.route .cities { font-size: 12px; color: var(--grey); }

/* --- FAQ --- */
.faq { background: var(--off); }
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px 40px; }
.q {
  background: #fff; border: 1px solid #EAEAE7; border-radius: 12px; padding: 28px 32px;
}
.q h3 {
  font-size: 18px; margin: 0 0 12px; font-weight: 700; letter-spacing: -.005em;
  display: flex; align-items: flex-start; gap: 12px;
}
.q h3::before {
  content: '';
  display: inline-block;
  width: 22px; height: 22px; flex-shrink: 0; margin-top: 2px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232CB414' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='10'/%3E%3Cpath d='M9.09 9a3 3 0 0 1 5.83 1c0 2-3 3-3 3'/%3E%3Ccircle cx='12' cy='17' r='.5' fill='%232CB414'/%3E%3C/svg%3E") center/contain no-repeat;
}
.q p { color: var(--grey); font-size: 15px; line-height: 1.55; margin: 0; padding-left: 36px; }
.faq-foot {
  margin-top: 40px; padding: 24px 32px; border: 1px dashed #CFCFCB; border-radius: 12px; background: #fff;
  display: flex; justify-content: space-between; align-items: center; gap: 24px;
}
.faq-foot p { margin: 0; color: var(--grey); font-size: 15px; }
.faq-foot p strong { color: var(--black); }

/* --- ACCREDITATIONS STRIP --- */
.accreds { background: #fff; border-top: 1px solid var(--line); padding: 72px 48px; }
.accreds-inner { max-width: 1290px; margin: 0 auto; }
.accreds-head { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 40px; gap: 40px; }
.accreds-head h3 { font-size: 24px; font-weight: 700; letter-spacing: -.01em; margin: 0; }
.accreds-head p { color: var(--grey); font-size: 15px; margin: 0; max-width: 520px; }
.accred-row {
  display: grid; grid-template-columns: repeat(6, 1fr); gap: 24px 32px; align-items: center;
}
.accred {
  height: 96px; display: flex; align-items: center; justify-content: center;
  padding: 12px; border: 1px solid var(--line); border-radius: 8px; background: #fff;
}
.accred img { max-height: 72px; max-width: 100%; width: auto; height: auto; object-fit: contain; display: block; }

/* --- FOOTER --- */
.footer { background: #08080A; color: #9A9AA0; padding: 80px 48px 40px; }
.footer-inner { max-width: 1290px; margin: 0 auto; display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 48px; }
.footer h4 { color: #fff; font-size: 13px; letter-spacing: .14em; text-transform: uppercase; font-weight: 700; margin: 0 0 18px; }
.footer ul { list-style: none; margin: 0; padding: 0; }
.footer li { margin: 8px 0; font-size: 14px; }
.footer a { color: #B5B5BA; text-decoration: none; }
.footer .addr { font-size: 14px; line-height: 1.6; color: #B5B5BA; margin: 16px 0 0; max-width: 280px; }
.footer .reg { font-size: 12px; color: #6E6E72; margin-top: 14px; font-family: "JetBrains Mono", monospace; }
.footer-strip {
  max-width: 1290px; margin: 60px auto 0; padding-top: 28px; border-top: 1px solid #1A1A1F;
  display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 16px 24px; color: #6E6E72; font-size: 12px;
}
.footer-strip .accr { display: flex; flex-wrap: wrap; gap: 12px 24px; align-items: center; color: #6E6E72; font-family: "JetBrains Mono", monospace; letter-spacing: .08em; }
.footer-strip .accr span { opacity: .7; }
.footer-strip a { color: #6E6E72; text-decoration: underline; text-underline-offset: 2px; }
.footer-strip a:hover { color: var(--green); }
.socials { display: flex; flex-direction: column; gap: 10px; }
.socials a {
  display: flex; align-items: center; gap: 10px;
  color: #B5B5BA; text-decoration: none; font-size: 14px;
}
.socials a:hover { color: #fff; }
.socials a svg { flex-shrink: 0; }

/* --- OUR APPROACH --- */
.approach { background: #0E0E10; color: #fff; padding: 80px 48px; }
.approach-inner { max-width: 1290px; margin: 0 auto; }
.accordion { margin-top: 40px; display: flex; flex-direction: column; gap: 3px; }
.accordion-item { border: 1px solid rgba(255,255,255,.08); border-radius: 10px; overflow: hidden; }
.accordion-item summary {
  cursor: pointer; list-style: none;
  padding: 20px 28px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  font-size: 17px; font-weight: 700; line-height: 1.3; color: #fff;
  background: rgba(255,255,255,.03);
  transition: background .2s;
}
.accordion-item summary::-webkit-details-marker { display: none; }
.accordion-item summary:hover { background: rgba(255,255,255,.06); }
.accordion-item summary::after {
  content: '+'; flex-shrink: 0;
  font-size: 24px; line-height: 1; font-weight: 300; color: var(--green);
  transition: transform .25s;
}
.accordion-item[open] > summary { background: rgba(255,255,255,.05); }
.accordion-item[open] > summary::after { transform: rotate(45deg); }
.accordion-body { padding: 28px 28px 36px; border-top: 1px solid rgba(255,255,255,.07); }
.accordion-body p { color: #B5B5BA; font-size: 16px; line-height: 1.65; margin: 0 0 16px; max-width: 820px; }
.accordion-body p:last-child { margin-bottom: 0; }
.accordion-body strong { color: #fff; font-weight: 600; }
.domino-figure { margin: 28px 0; }
.domino-diagram { max-width: 100%; width: 620px; display: block; }
.domino-figure figcaption { margin-top: 10px; font-size: 13px; color: #666; font-style: italic; }

/* Utility */
.u-mono { font-family: "JetBrains Mono", monospace; }

/* Hide the reCAPTCHA v3 badge - attribution text is shown next to each form instead,
   per Google's terms (https://developers.google.com/recaptcha/docs/faq#id-like-to-hide-the-recaptcha-badge). */
.grecaptcha-badge { visibility: hidden; }
