/* ============================================================
   MWAMBA INVESTMENT LTD
   Creative Industrial Premium Design System
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Sora:wght@300;400;500;600;700;800&family=Manrope:wght@400;500;600;700&display=swap');

:root {
  --ink:          #0f1225;
  --deep:         #151a35;
  --navy:         #1e2749;
  --brand:        #3b4bb8;
  --brand-bright: #5b6fd4;
  --accent:       #f0a030;          /* industrial amber */
  --accent-soft:  #f7c46c;
  --surface:      #f7f8fc;
  --surface-2:    #eef0f8;
  --white:        #ffffff;
  --muted:        #6b728a;
  --border:       rgba(30, 39, 73, 0.09);
  --border-strong:rgba(30, 39, 73, 0.16);

  --shadow-sm:  0 2px 8px rgba(15, 18, 37, 0.04);
  --shadow:     0 8px 30px rgba(15, 18, 37, 0.08);
  --shadow-lg:  0 20px 50px rgba(15, 18, 37, 0.12);
  --shadow-xl:  0 30px 80px rgba(15, 18, 37, 0.18);

  --radius:     1rem;
  --radius-sm:  0.6rem;
  --radius-lg:  1.4rem;
  --container:  1180px;
  --header-h:   4.5rem;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Manrope', system-ui, sans-serif;
  font-size: 1.02rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}
h1,h2,h3,h4 { font-family: 'Sora', system-ui, sans-serif; letter-spacing: -0.03em; line-height: 1.15; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: all 0.25s ease; }
ul { list-style: none; }
button, input, textarea { font-family: inherit; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.4rem;
}
@media (min-width: 768px) { .container { padding: 0 2.2rem; } }
@media (min-width: 1200px) { .container { padding: 0 2.5rem; } }

/* ─── HEADER ─────────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(16px) saturate(1.4);
  -webkit-backdrop-filter: blur(16px) saturate(1.4);
  border-bottom: 1px solid transparent;
  transition: all 0.3s ease;
}
.site-header.scrolled {
  border-bottom-color: var(--border);
  box-shadow: var(--shadow-sm);
  background: rgba(255,255,255,0.95);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 2rem;
}
.logo img { height: 2.4rem; width: auto; }
@media (min-width: 1024px) { .logo img { height: 2.7rem; } }

.nav-desktop { display: none; align-items: center; gap: 0.2rem; }
@media (min-width: 1024px) { .nav-desktop { display: flex; } }

.nav-link {
  position: relative;
  padding: 0.55rem 1.05rem;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--muted);
  border-radius: 999px;
}
.nav-link:hover { color: var(--ink); background: var(--surface); }
.nav-link.active { color: var(--brand); background: rgba(59,75,184,0.08); }

.header-actions { display: none; align-items: center; gap: 1.1rem; }
@media (min-width: 1024px) { .header-actions { display: flex; } }

.phone-link {
  display: flex; align-items: center; gap: 0.4rem;
  font-size: 0.88rem; font-weight: 600; color: var(--muted);
}
.phone-link:hover { color: var(--brand); }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  font-weight: 600; font-size: 0.92rem;
  border-radius: 999px; padding: 0.75rem 1.55rem;
  border: none; cursor: pointer; transition: all 0.28s cubic-bezier(0.22,1,0.36,1);
  white-space: nowrap;
}
.btn-primary {
  background: var(--brand);
  color: #fff;
  box-shadow: 0 4px 18px rgba(59,75,184,0.35);
}
.btn-primary:hover {
  background: #2f3c9e;
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(59,75,184,0.4);
}
.btn-accent {
  background: var(--accent);
  color: var(--ink);
  box-shadow: 0 4px 18px rgba(240,160,48,0.35);
}
.btn-accent:hover {
  background: #e09020;
  transform: translateY(-3px);
}
.btn-outline {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.35);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.7);
}
.btn-white {
  background: #fff;
  color: var(--brand);
  box-shadow: var(--shadow);
}
.btn-white:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}
.btn-lg { padding: 0.95rem 1.9rem; font-size: 1rem; }

.mobile-toggle {
  display: flex; align-items: center; justify-content: center;
  width: 2.6rem; height: 2.6rem;
  border: 1px solid var(--border-strong);
  border-radius: 0.7rem;
  background: transparent; color: var(--ink); cursor: pointer;
}
@media (min-width: 1024px) { .mobile-toggle { display: none; } }

.mobile-nav {
  display: none; flex-direction: column;
  padding: 1rem 0 1.5rem;
  border-top: 1px solid var(--border);
  background: #fff;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  padding: 0.9rem 0;
  font-weight: 600; font-size: 1.05rem;
  border-bottom: 1px solid var(--border);
  color: var(--ink);
}
.mobile-nav a:last-child { border: none; color: var(--muted); }

/* ─── HERO – Dramatic ────────────────────────────────────── */
.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: var(--ink);
  color: #fff;
  min-height: 92vh;
  display: flex;
  align-items: center;
}
@media (min-width: 1024px) {
  .hero { min-height: 100vh; }
}

.hero-bg {
  position: absolute; inset: 0; z-index: -2;
}
.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 30%;
  opacity: 0.42;
  transform: scale(1.05);
}
.hero-overlay {
  position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(115deg, rgba(15,18,37,0.97) 0%, rgba(15,18,37,0.82) 42%, rgba(15,18,37,0.35) 100%),
    radial-gradient(ellipse at 70% 60%, rgba(59,75,184,0.25), transparent 55%);
}

/* Decorative geometry */
.hero::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 55%;
  height: 140%;
  background: linear-gradient(160deg, transparent 30%, rgba(240,160,48,0.07) 100%);
  clip-path: polygon(30% 0, 100% 0, 100% 100%, 0% 100%);
  z-index: -1;
  pointer-events: none;
}

.hero-content {
  padding: 6.5rem 0 5.5rem;
  max-width: 44rem;
  position: relative;
}
@media (min-width: 1024px) {
  .hero-content {
    padding: 8rem 0 7rem;
    max-width: 52rem;
  }
}

.hero-badge {
  display: inline-flex; align-items: center; gap: 0.55rem;
  font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--accent-soft);
  margin-bottom: 1.75rem;
  padding: 0.4rem 1rem;
  background: rgba(240,160,48,0.12);
  border: 1px solid rgba(240,160,48,0.25);
  border-radius: 999px;
}

.hero h1 {
  font-size: clamp(2.7rem, 6.2vw, 4.6rem);
  font-weight: 800;
  line-height: 1.02;
  color: #fff;
  margin-bottom: 1.5rem;
}
.hero h1 span {
  display: block;
}
.hero h1 .accent-line {
  background: linear-gradient(90deg, var(--accent), var(--accent-soft));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-lead {
  font-size: 1.15rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.78);
  max-width: 36rem;
  margin-bottom: 2.5rem;
  font-weight: 400;
}
@media (min-width: 768px) {
  .hero-lead { font-size: 1.22rem; }
}

.hero-ctas {
  display: flex; flex-wrap: wrap; gap: 0.9rem;
  margin-bottom: 4rem;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.75rem 1.5rem;
  max-width: 38rem;
  padding-top: 2.25rem;
  border-top: 1px solid rgba(255,255,255,0.12);
}
@media (min-width: 640px) {
  .hero-stats { grid-template-columns: repeat(4, 1fr); }
}

.stat-item { position: relative; }
.stat-value {
  font-family: 'Sora', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
  color: #fff;
  letter-spacing: -0.03em;
}
.stat-label {
  font-size: 0.78rem;
  margin-top: 0.45rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.35;
  font-weight: 500;
}

/* ─── SECTIONS ───────────────────────────────────────────── */
.section { padding: 5rem 0; }
@media (min-width: 1024px) { .section { padding: 7.5rem 0; } }

.section-dark {
  background: var(--ink);
  color: #fff;
}
.section-surface { background: var(--surface); }

.section-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--brand);
  margin-bottom: 0.7rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.section-label::before {
  content: '';
  width: 1.4rem;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
}
.section-dark .section-label { color: var(--accent-soft); }
.section-dark .section-label::before { background: var(--accent); }

.section-title {
  font-size: clamp(1.85rem, 3.5vw, 2.7rem);
  font-weight: 800;
  margin-bottom: 1.1rem;
  max-width: 20ch;
}
.section-dark .section-title { color: #fff; }

.section-lead {
  font-size: 1.1rem;
  color: var(--muted);
  max-width: 40rem;
  line-height: 1.7;
}
.section-dark .section-lead { color: rgba(255,255,255,0.65); }

/* ─── ABOUT ──────────────────────────────────────────────── */
.about-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 1024px) {
  .about-grid {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 5rem;
  }
}

.about-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}
.about-image img {
  width: 100%;
  aspect-ratio: 4/3.1;
  object-fit: cover;
}
.about-image::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(15,18,37,0.35), transparent 50%);
  pointer-events: none;
}
/* Accent frame */
.about-image::before {
  content: '';
  position: absolute;
  bottom: -12px; right: -12px;
  width: 70%; height: 70%;
  border: 2px solid var(--accent);
  border-radius: var(--radius-lg);
  z-index: -1;
  opacity: 0.6;
}

/* ─── SERVICES ───────────────────────────────────────────── */
.services-header {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-end;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.services-grid {
  display: grid;
  gap: 1.4rem;
}
@media (min-width: 640px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1100px) {
  .services-grid { grid-template-columns: repeat(3, 1fr); gap: 1.6rem; }
}

.service-card {
  position: relative;
  background: #fff;
  border-radius: var(--radius);
  padding: 2rem 1.75rem 1.85rem;
  border: 1px solid var(--border);
  transition: all 0.35s cubic-bezier(0.22,1,0.36,1);
  height: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--brand), var(--accent));
  opacity: 0;
  transition: opacity 0.3s;
}
.service-card:hover {
  border-color: transparent;
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}
.service-card:hover::before { opacity: 1; }

.service-num {
  font-family: 'Sora', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.08em;
  margin-bottom: 1.1rem;
}

.service-icon {
  width: 3.2rem; height: 3.2rem;
  border-radius: 0.85rem;
  background: linear-gradient(145deg, var(--surface-2), #e4e7f5);
  display: flex; align-items: center; justify-content: center;
  color: var(--brand);
  margin-bottom: 1.4rem;
  flex-shrink: 0;
  transition: all 0.3s;
}
.service-card:hover .service-icon {
  background: var(--brand);
  color: #fff;
  transform: scale(1.06);
}

.service-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
  transition: color 0.2s;
}
.service-card:hover h3 { color: var(--brand); }

.service-card p {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.65;
  flex-grow: 1;
}

/* ─── WHY CHOOSE ─────────────────────────────────────────── */
.why-grid {
  display: grid;
  gap: 1.5rem;
  margin-top: 3rem;
}
@media (min-width: 640px) {
  .why-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .why-grid { grid-template-columns: repeat(4, 1fr); gap: 1.4rem; }
}

.why-card {
  padding: 1.75rem 1.4rem;
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: all 0.3s ease;
  position: relative;
}
.why-card:hover {
  border-color: rgba(59,75,184,0.2);
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

.why-icon {
  width: 2.9rem; height: 2.9rem;
  border-radius: 0.7rem;
  background: rgba(59,75,184,0.08);
  display: flex; align-items: center; justify-content: center;
  color: var(--brand);
  margin-bottom: 1.2rem;
}

.why-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.why-card p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.6;
}

/* Values strip */
.values-row {
  display: grid;
  gap: 1.75rem;
  margin-top: 3.5rem;
  padding-top: 3rem;
  border-top: 1px solid var(--border);
}
@media (min-width: 768px) {
  .values-row { grid-template-columns: repeat(4, 1fr); gap: 2rem; }
}

.value-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.value-num {
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  font-size: 1.35rem;
  color: var(--accent);
  line-height: 1.1;
  min-width: 1.8rem;
}
.value-item strong {
  display: block;
  font-size: 1rem;
  margin-bottom: 0.3rem;
  font-weight: 700;
}
.value-item span {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.5;
}

/* ─── CTA BAND ───────────────────────────────────────────── */
.cta-band {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: var(--ink);
  color: #fff;
  padding: 5.5rem 0;
  text-align: center;
}
@media (min-width: 1024px) {
  .cta-band { padding: 7rem 0; }
}

.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(59,75,184,0.35), transparent 50%),
    radial-gradient(ellipse at 80% 60%, rgba(240,160,48,0.15), transparent 45%);
  z-index: -1;
}

.cta-band h2 {
  font-size: clamp(1.9rem, 3.5vw, 2.7rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 1rem;
  max-width: 18ch;
  margin-left: auto;
  margin-right: auto;
}
.cta-band p {
  color: rgba(255,255,255,0.7);
  margin-bottom: 2.25rem;
  max-width: 34rem;
  margin-left: auto;
  margin-right: auto;
  font-size: 1.1rem;
}

/* ─── FOOTER ─────────────────────────────────────────────── */
.site-footer {
  background: var(--deep);
  color: #fff;
}
.footer-grid {
  display: grid;
  gap: 3rem;
  padding: 4.5rem 0 3.5rem;
}
@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 1.7fr 1fr 1.5fr;
    gap: 3.5rem;
  }
}
.footer-brand p {
  margin-top: 1.5rem;
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.55);
  max-width: 24rem;
}
.footer-col h2 {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: rgba(255,255,255,0.4);
  margin-bottom: 1.3rem;
}
.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.footer-col a {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.7);
}
.footer-col a:hover { color: var(--accent); }
.footer-contact li {
  display: flex;
  gap: 0.8rem;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.7);
  align-items: flex-start;
  line-height: 1.5;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 1.5rem 0;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
}

/* ─── PAGE HERO ──────────────────────────────────────────── */
.page-hero {
  background: var(--ink);
  color: #fff;
  padding: 5.5rem 0 4.5rem;
  position: relative;
  overflow: hidden;
}
@media (min-width: 1024px) {
  .page-hero { padding: 7rem 0 5.5rem; }
}
.page-hero::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 50%; height: 100%;
  background: radial-gradient(ellipse at 100% 0%, rgba(59,75,184,0.3), transparent 60%);
  pointer-events: none;
}
.page-hero .section-label { color: var(--accent-soft); }
.page-hero h1 {
  font-size: clamp(2.3rem, 5vw, 3.6rem);
  font-weight: 800;
  line-height: 1.08;
  color: #fff;
  margin-top: 0.5rem;
  max-width: 16ch;
}
.page-hero p {
  margin-top: 1.2rem;
  color: rgba(255,255,255,0.65);
  max-width: 34rem;
  font-size: 1.1rem;
}

/* ─── CONTACT ────────────────────────────────────────────── */
.contact-grid {
  display: grid;
  gap: 3.5rem;
}
@media (min-width: 1024px) {
  .contact-grid {
    grid-template-columns: 0.85fr 1.15fr;
    gap: 5rem;
    align-items: start;
  }
}
.contact-info-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid var(--border);
}
.contact-info-item {
  display: flex;
  gap: 1.1rem;
  margin-bottom: 1.6rem;
}
.contact-info-item:last-child { margin-bottom: 0; }
.contact-info-item svg {
  flex-shrink: 0;
  color: var(--brand);
  margin-top: 0.2rem;
}
.contact-info-item strong {
  display: block;
  font-size: 0.85rem;
  margin-bottom: 0.3rem;
  font-weight: 700;
}
.contact-info-item p,
.contact-info-item a {
  font-size: 0.98rem;
  color: var(--muted);
}

.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  margin-bottom: 0.45rem;
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.9rem 1.1rem;
  border: 1.5px solid var(--border-strong);
  border-radius: var(--radius-sm);
  font-size: 0.98rem;
  background: #fff;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--brand);
  box-shadow: 0 0 0 4px rgba(59,75,184,0.12);
}
.form-group textarea {
  min-height: 150px;
  resize: vertical;
}

.alert {
  padding: 1.1rem 1.35rem;
  border-radius: var(--radius-sm);
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
  line-height: 1.5;
}
.alert-success {
  background: #ecfdf5;
  color: #065f46;
  border: 1px solid #a7f3d0;
}
.alert-error {
  background: #fef2f2;
  color: #991b1b;
  border: 1px solid #fecaca;
}
.alert ul { margin: 0.5rem 0 0 1.25rem; }

.map-container {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 48%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  margin-top: 1.75rem;
  border: 1px solid var(--border);
}
@media (min-width: 768px) {
  .map-container { padding-bottom: 40%; }
}
.map-container iframe {
  position: absolute; top: 0; left: 0;
  width: 100%; height: 100%; border: 0;
}

/* Service detail */
.service-detail {
  display: grid;
  gap: 1.5rem;
  padding: 3rem 0;
  border-bottom: 1px solid var(--border);
}
@media (min-width: 1024px) {
  .service-detail {
    grid-template-columns: 5.5rem 1fr;
    gap: 2.75rem;
    padding: 3.5rem 0;
  }
}
.service-detail .service-num {
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  opacity: 0.9;
}
.service-detail h2 {
  font-size: 1.55rem;
  font-weight: 800;
  margin-bottom: 0.9rem;
}
.service-detail p {
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 0.8rem;
  max-width: 50rem;
  font-size: 1.02rem;
}

/* Icons */
.icon {
  width: 1.2rem; height: 1.2rem;
  stroke: currentColor; fill: none;
  stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
}
.icon-lg { width: 1.5rem; height: 1.5rem; }

/* WhatsApp */
.whatsapp-float {
  position: fixed;
  bottom: 1.6rem; right: 1.6rem;
  z-index: 90;
  width: 3.7rem; height: 3.7rem;
  background: #25D366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 28px rgba(37,211,102,0.45);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  color: #fff;
}
.whatsapp-float:hover {
  transform: scale(1.1) translateY(-4px);
  box-shadow: 0 12px 36px rgba(37,211,102,0.55);
}
.whatsapp-float svg {
  width: 1.75rem; height: 1.75rem;
  fill: currentColor;
}
.whatsapp-float::before {
  content: '';
  position: absolute; inset: -5px;
  border-radius: 50%;
  border: 2px solid #25D366;
  opacity: 0.45;
  animation: pulse-ring 2.2s ease-out infinite;
}
@keyframes pulse-ring {
  0% { transform: scale(0.92); opacity: 0.55; }
  70% { transform: scale(1.3); opacity: 0; }
  100% { transform: scale(1.3); opacity: 0; }
}
@media (min-width: 768px) {
  .whatsapp-float {
    bottom: 2.1rem; right: 2.1rem;
    width: 4rem; height: 4rem;
  }
}

.g-recaptcha { margin: 1.2rem 0 1.4rem; transform-origin: left top; }

.honeypot {
  position: absolute !important;
  left: -9999px !important;
  opacity: 0 !important;
  height: 0 !important; width: 0 !important;
  overflow: hidden !important;
  pointer-events: none;
}

:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 3px;
}
