/* ============================================================
   MR. GREEN AGENCY — MAIN STYLESHEET
   Mobile-first · CSS custom properties · No external libraries
   ============================================================

   TABLE OF CONTENTS
   1.  Custom Properties
   2.  Reset & Base
   3.  Typography
   4.  Layout Utilities
   5.  Navigation
   6.  Buttons
   7.  Section Base & Reveal Animations
   8.  Hero
   9.  Credibility Strip
   10. Problem Section
   11. Services Section
   12. Why Us Section
   13. How It Works Section
   14. Proof Section
   15. Fit Section
   16. FAQ Section
   17. Contact / Final CTA Section
   18. Footer
   19. Responsive — Tablet (768px+)
   20. Responsive — Desktop (1024px+)
   21. Reduced Motion

   ============================================================ */


/* ============================================================
   1. CUSTOM PROPERTIES
   ============================================================ */
:root {
  /* Brand colors */
  --green:           #00C853;
  --green-dark:      #00A040;
  --green-glow:      rgba(0, 200, 83, 0.15);
  --green-subtle:    rgba(0, 200, 83, 0.08);
  --green-border:    rgba(0, 200, 83, 0.20);

  /* Backgrounds */
  --black:           #0A0A0A;
  --dark:            #111111;
  --dark-alt:        #141414;
  --light:           #F4F4F4;
  --white:           #FFFFFF;

  /* Text */
  --text-dark:       #111111;
  --text-on-dark:    #F0F0F0;
  --muted-dark:      rgba(255, 255, 255, 0.50);
  --muted-light:     #7A7A7A;

  /* Borders */
  --border-dark:     rgba(255, 255, 255, 0.08);
  --border-light:    rgba(0, 0, 0, 0.08);

  /* Typography */
  --font-heading:    'Syne', sans-serif;
  --font-body:       'Inter', sans-serif;

  /* Spacing */
  --sp-section:      72px;
  --sp-container:    24px;
  --container-max:   1200px;

  /* Shape */
  --r-card:          16px;
  --r-pill:          100px;
  --r-sm:            8px;

  /* Motion */
  --t-fast:          0.15s ease;
  --t-base:          0.22s ease;
  --t-slow:          0.32s ease;

  /* Nav */
  --nav-h:           72px;
}


/* ============================================================
   2. RESET & BASE
   ============================================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-dark);
  background: var(--black);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-tap-highlight-color: rgba(0, 200, 83, 0.18);
}

img, svg { display: block; max-width: 100%; }
a        { color: inherit; text-decoration: none; }
button   { cursor: pointer; border: none; background: none; font-family: inherit; }
ul, ol   { list-style: none; }

:focus-visible {
  outline: 2px solid var(--green);
  outline-offset: 3px;
}
.btn-primary:focus-visible,
.btn-secondary:focus-visible {
  outline-offset: 4px;
}


/* ============================================================
   3. TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  line-height: 1.14;
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(38px, 7.5vw, 64px); font-weight: 800; }
h2 { font-size: clamp(26px, 4.5vw, 44px); font-weight: 700; }
h3 { font-size: clamp(17px, 2.5vw, 22px); font-weight: 600; }

p  { line-height: 1.72; }

.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 14px;
}


/* ============================================================
   4. LAYOUT UTILITIES
   ============================================================ */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding-inline: max(var(--sp-container), env(safe-area-inset-left))
                  max(var(--sp-container), env(safe-area-inset-right));
}

.section--dark   { background: var(--dark);     color: var(--text-on-dark); }
.section--darker { background: var(--black);    color: var(--text-on-dark); }
.section--alt    { background: var(--dark-alt); color: var(--text-on-dark); }
.section--light  { background: var(--light);    color: var(--text-dark);    }
.section--white  { background: var(--white);    color: var(--text-dark);    }


/* ============================================================
   5. NAVIGATION
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: background var(--t-slow), backdrop-filter var(--t-slow),
              border-color var(--t-slow);
  border-bottom: 1px solid transparent;
}

.nav.scrolled {
  background: rgba(10, 10, 10, 0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom-color: var(--border-dark);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.nav__logo {
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.02em;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: filter var(--t-base);
}
.nav__logo-img {
  width: 38px;
  height: 38px;
  object-fit: contain;
  filter: drop-shadow(0 0 14px rgba(0, 200, 83, 0.35));
  transition: transform var(--t-base), filter var(--t-base);
}
.nav__logo:hover .nav__logo-img {
  transform: rotate(-6deg) scale(1.05);
  filter: drop-shadow(0 0 20px rgba(0, 200, 83, 0.55));
}
.nav__logo-text { display: none; }
.nav__logo-text span { color: var(--green); }
@media (min-width: 420px) {
  .nav__logo-text { display: inline-flex; }
}
.nav__logo > span { color: var(--green); }

.nav__right {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav__links {
  display: none;
  align-items: center;
  gap: 28px;
}

.nav__links a {
  font-size: 13.5px;
  font-weight: 500;
  color: rgba(255,255,255,0.65);
  transition: color var(--t-base);
}
.nav__links a:hover { color: var(--white); }

.nav__lang {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  color: rgba(255,255,255,0.4);
  transition: color var(--t-base);
  cursor: pointer;
}
.nav__lang:hover { color: var(--green); }

.nav__cta { display: none; }

/* Hamburger */
.nav__hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
  cursor: pointer;
}

.nav__hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform var(--t-base), opacity var(--t-base);
  transform-origin: center;
}

.nav__hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav__hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile overlay menu */
.nav__mobile-menu {
  position: fixed;
  inset: 0;
  height: 100vh;
  height: 100dvh;
  background: var(--black);
  display: flex;
  flex-direction: column;
  align-items: center;
  /* `safe center` prevents flex overflow from clipping the first item
     on short viewports; falls back to `center` in older browsers. */
  justify-content: safe center;
  gap: 36px;
  padding: calc(var(--nav-h) + env(safe-area-inset-top)) 24px calc(32px + env(safe-area-inset-bottom));
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--t-slow), visibility var(--t-slow);
}

.nav__mobile-menu.open {
  opacity: 1;
  visibility: visible;
}

.nav__mobile-menu a {
  font-family: var(--font-heading);
  font-size: 26px;
  font-weight: 700;
  color: var(--white);
  transition: color var(--t-base);
}
.nav__mobile-menu a:hover { color: var(--green); }

.nav__mobile-menu .mobile-cta {
  margin-top: 8px;
}

.nav__mobile-lang {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  color: rgba(255,255,255,0.35);
  margin-top: 8px;
  cursor: pointer;
  transition: color var(--t-base);
}
.nav__mobile-lang:hover { color: var(--green); }


/* ============================================================
   6. BUTTONS
   ============================================================ */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--green);
  color: #000;
  padding: 15px 30px;
  border-radius: var(--r-pill);
  font-family: var(--font-body);
  font-size: 14.5px;
  font-weight: 700;
  letter-spacing: 0.2px;
  white-space: nowrap;
  transition: background var(--t-base), transform var(--t-fast), box-shadow var(--t-base);
}

.btn-primary:hover {
  background: var(--green-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0, 200, 83, 0.28);
}
.btn-primary:active { transform: translateY(0); }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--white);
  padding: 14px 29px;
  border-radius: var(--r-pill);
  border: 1.5px solid rgba(255,255,255,0.22);
  font-family: var(--font-body);
  font-size: 14.5px;
  font-weight: 600;
  white-space: nowrap;
  transition: border-color var(--t-base), color var(--t-base), transform var(--t-fast);
}
.btn-secondary:hover {
  border-color: var(--green);
  color: var(--green);
  transform: translateY(-2px);
}

.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}


/* ============================================================
   7. SECTION BASE & REVEAL ANIMATIONS
   ============================================================ */
section { padding: var(--sp-section) 0; }

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

.reveal-stagger > * {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.reveal-stagger.visible > *:nth-child(1) { opacity:1; transform:none; transition-delay: 0.00s; }
.reveal-stagger.visible > *:nth-child(2) { opacity:1; transform:none; transition-delay: 0.09s; }
.reveal-stagger.visible > *:nth-child(3) { opacity:1; transform:none; transition-delay: 0.18s; }
.reveal-stagger.visible > *:nth-child(4) { opacity:1; transform:none; transition-delay: 0.27s; }
.reveal-stagger.visible > *:nth-child(5) { opacity:1; transform:none; transition-delay: 0.36s; }
.reveal-stagger.visible > *:nth-child(6) { opacity:1; transform:none; transition-delay: 0.45s; }
.reveal-stagger.visible > *:nth-child(7) { opacity:1; transform:none; transition-delay: 0.50s; }


/* ============================================================
   8. HERO
   ============================================================ */
.section-hero {
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: calc(var(--nav-h) + 56px);
  padding-bottom: 80px;
  background: var(--black);
}

/* Decorative glows */
.section-hero::before {
  content: '';
  position: absolute;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(0, 200, 83, 0.11) 0%, transparent 65%);
  top: -140px; right: -160px;
  pointer-events: none;
}
.section-hero::after {
  content: '';
  position: absolute;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(0, 200, 83, 0.055) 0%, transparent 65%);
  bottom: -120px; left: -80px;
  pointer-events: none;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--green-subtle);
  border: 1px solid var(--green-border);
  color: var(--green);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.8px;
  padding: 7px 14px;
  border-radius: var(--r-pill);
  margin-bottom: 28px;
  animation: heroFadeUp 0.6s ease both;
}

.hero__badge-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--green);
  flex-shrink: 0;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.4; }
}

.hero__heading {
  color: var(--white);
  margin-bottom: 24px;
  max-width: 780px;
  animation: heroFadeUp 0.6s ease both 0.10s;
}
.hero__heading em {
  font-style: normal;
  color: var(--green);
}

.hero__sub {
  font-size: 17.5px;
  color: var(--muted-dark);
  max-width: 520px;
  line-height: 1.75;
  margin-bottom: 40px;
  animation: heroFadeUp 0.6s ease both 0.20s;
}

.hero__cta {
  animation: heroFadeUp 0.6s ease both 0.30s;
  margin-bottom: 56px;
}

.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  align-items: center;
  padding-top: 36px;
  border-top: 1px solid var(--border-dark);
  animation: heroFadeUp 0.6s ease both 0.42s;
}

.trust-pill {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 12.5px;
  font-weight: 500;
  color: rgba(255,255,255,0.48);
}

.trust-pill svg {
  width: 13px; height: 13px;
  stroke: var(--green);
  fill: none;
  stroke-width: 2.5;
  flex-shrink: 0;
}

@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}


/* ============================================================
   9. CREDIBILITY STRIP
   ============================================================ */
.section-credibility {
  padding: 28px 0;
  background: var(--light);
}

.credibility__row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px 20px;
}

.cred-item {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--text-dark);
  white-space: nowrap;
}

.cred-item__icon {
  width: 30px; height: 30px;
  background: var(--green-subtle);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  flex-shrink: 0;
}

.cred-sep {
  width: 1px; height: 20px;
  background: rgba(0,0,0,0.12);
  display: none;
}

.credibility__line {
  text-align: center;
  font-size: 13px;
  color: var(--muted-light);
  margin-top: 14px;
  font-style: italic;
}


/* ============================================================
   10. PROBLEM SECTION
   ============================================================ */
.section-problem { background: var(--dark-alt); }

.problem__intro {
  font-size: 17px;
  color: var(--muted-dark);
  max-width: 520px;
  margin-bottom: 48px;
  line-height: 1.75;
}

.problem__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin-bottom: 40px;
}

.problem-card {
  background: rgba(255,255,255,0.035);
  border: 1px solid var(--border-dark);
  border-radius: var(--r-card);
  padding: 26px 28px;
  transition: border-color var(--t-base), background var(--t-base);
}
.problem-card:hover {
  border-color: rgba(0, 200, 83, 0.22);
  background: rgba(255,255,255,0.055);
}

.problem-card__title {
  font-family: var(--font-heading);
  font-size: 15.5px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 7px;
}

.problem-card__body {
  font-size: 13.5px;
  color: rgba(255,255,255,0.5);
  line-height: 1.65;
}

.problem__bridge {
  background: var(--green-subtle);
  border: 1px solid var(--green-border);
  border-radius: var(--r-card);
  padding: 28px 32px;
  text-align: center;
}

.problem__bridge p {
  font-size: 16px;
  color: rgba(255,255,255,0.78);
  line-height: 1.65;
}
.problem__bridge strong {
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 700;
}


/* ============================================================
   11. SERVICES SECTION
   ============================================================ */
.section-services { background: var(--white); }

.services__intro {
  font-size: 17px;
  color: var(--muted-light);
  max-width: 460px;
  margin-bottom: 48px;
}

.services__grid {
  /* Flex-wrap w/ justify-content: center keeps the last (orphan) row centered
     instead of stuck to the left edge when the 5 cards don't fill the grid. */
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: center;
  margin-bottom: 40px;
}

.service-card {
  flex: 1 1 100%;
  max-width: 100%;
  background: var(--light);
  border: 1px solid var(--border-light);
  border-radius: var(--r-card);
  padding: 30px 28px;
  transition: transform var(--t-base), box-shadow var(--t-base), border-color var(--t-base);
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.07);
  border-color: rgba(0, 200, 83, 0.28);
}

.service-card__num {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--green);
  margin-bottom: 14px;
}

.service-card__title {
  color: var(--text-dark);
  margin-bottom: 10px;
}

.service-card__body {
  font-size: 14px;
  color: var(--muted-light);
  line-height: 1.7;
}

.services__footer {
  background: var(--light);
  border: 1px solid var(--border-light);
  border-radius: var(--r-card);
  padding: 36px 28px;
  text-align: center;
}
.services__footer p {
  font-size: 17.5px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 22px;
  font-family: var(--font-heading);
}


/* ============================================================
   12. WHY US SECTION
   ============================================================ */
.section-why { background: var(--black); }

.why__intro {
  font-size: 17px;
  color: var(--muted-dark);
  max-width: 540px;
  margin-bottom: 48px;
  line-height: 1.75;
}

.why__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  margin-bottom: 40px;
}

.why-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.why-item__icon {
  width: 38px; height: 38px;
  background: var(--green-subtle);
  border: 1px solid var(--green-border);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.why-item__icon svg {
  width: 17px; height: 17px;
  stroke: var(--green);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.why-item__title {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 5px;
}
.why-item__body {
  font-size: 13.5px;
  color: rgba(255,255,255,0.48);
  line-height: 1.65;
}

.why__close {
  font-size: 15.5px;
  color: rgba(255,255,255,0.52);
  font-style: italic;
  border-top: 1px solid var(--border-dark);
  padding-top: 32px;
  line-height: 1.75;
}


/* ============================================================
   13. HOW IT WORKS SECTION
   ============================================================ */
.section-process { background: var(--light); }

.process__intro {
  font-size: 17px;
  color: var(--muted-light);
  max-width: 460px;
  margin-bottom: 52px;
}

.process__steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin-bottom: 32px;
}

.step-item {
  display: flex;
  gap: 22px;
  align-items: flex-start;
}

.step-item__num {
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 800;
  color: var(--green);
  opacity: 0.45;
  line-height: 1;
  flex-shrink: 0;
  width: 44px;
  text-align: right;
}

.step-item__title {
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 7px;
}
.step-item__body {
  font-size: 14px;
  color: var(--muted-light);
  line-height: 1.72;
}

.process__note {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--r-sm);
  padding: 14px 18px;
  font-size: 13.5px;
  color: var(--muted-light);
  margin-bottom: 36px;
  line-height: 1.55;
}
.process__note svg {
  width: 15px; height: 15px;
  stroke: var(--green);
  fill: none;
  stroke-width: 2;
  flex-shrink: 0;
  margin-top: 1px;
}


/* ============================================================
   14. PROOF SECTION
   ============================================================ */
.section-proof { background: var(--dark-alt); }

.proof__intro {
  font-size: 17px;
  color: var(--muted-dark);
  max-width: 460px;
  margin-bottom: 48px;
}

.proof__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
  margin-bottom: 48px;
}

.proof-card {
  background: rgba(255,255,255,0.035);
  border: 1px solid var(--border-dark);
  border-radius: var(--r-card);
  padding: 30px 28px;
}

.proof-card--placeholder {
  border-style: dashed;
  border-color: rgba(255,255,255,0.10);
  background: transparent;
}

.proof-card__tag {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 18px;
}

.proof-card__type {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: rgba(255,255,255,0.3);
  margin-bottom: 14px;
}

.proof-stat-row {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 8px;
}
.proof-stat-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255,255,255,0.28);
  min-width: 52px;
  flex-shrink: 0;
}
.proof-stat-value {
  font-size: 13.5px;
  color: rgba(255,255,255,0.42);
  font-style: italic;
}

.proof-card__change {
  font-size: 12.5px;
  color: rgba(255,255,255,0.28);
  padding-top: 14px;
  border-top: 1px solid var(--border-dark);
  margin-top: 6px;
}

.proof-card__quote {
  font-size: 15.5px;
  color: rgba(255,255,255,0.68);
  font-style: italic;
  line-height: 1.72;
  margin-bottom: 14px;
}
.proof-card__attr {
  font-size: 12.5px;
  color: rgba(255,255,255,0.3);
}

.proof__trust {
  text-align: center;
  font-size: 15px;
  color: rgba(255,255,255,0.42);
  font-style: italic;
  border-top: 1px solid var(--border-dark);
  padding-top: 36px;
}


/* ============================================================
   15. FIT SECTION
   ============================================================ */
.section-fit { background: var(--white); }

.fit__intro {
  font-size: 17px;
  color: var(--muted-light);
  max-width: 540px;
  margin-bottom: 48px;
  line-height: 1.75;
}

.fit__cols {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-bottom: 40px;
}

.fit-block {
  background: var(--light);
  border: 1px solid var(--border-light);
  border-radius: var(--r-card);
  padding: 28px;
}

.fit-block__label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 20px;
}
.fit-block--yes .fit-block__label { color: var(--green); }
.fit-block--no  .fit-block__label { color: #D32F2F; }
.fit-block--no  { opacity: 0.72; }

.fit-list { display: flex; flex-direction: column; gap: 13px; }

.fit-list__item {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  font-size: 14.5px;
  color: var(--text-dark);
  line-height: 1.55;
}
.fit-list__item--no { color: var(--muted-light); }

.fit-icon {
  width: 20px; height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}
.fit-icon--yes { background: var(--green); }
.fit-icon--no  { background: rgba(211, 47, 47, 0.12); }

.fit-icon svg {
  width: 11px; height: 11px;
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.fit-icon--yes svg { stroke: #000; }
.fit-icon--no  svg { stroke: #D32F2F; }

.fit__close {
  font-size: 16px;
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 30px;
  line-height: 1.65;
}


/* ============================================================
   16. FAQ SECTION
   ============================================================ */
.section-faq { background: var(--dark); }

.faq__list {
  margin-top: 40px;
  border-top: 1px solid var(--border-dark);
}

.faq-item { border-bottom: 1px solid var(--border-dark); }

.faq-item__q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 0;
  text-align: left;
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 600;
  color: var(--white);
  cursor: pointer;
  transition: color var(--t-base);
}
.faq-item__q:hover { color: var(--green); }

.faq-item__toggle {
  width: 28px; height: 28px;
  background: rgba(255,255,255,0.06);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background var(--t-base), transform var(--t-slow);
}
.faq-item.open .faq-item__toggle {
  background: var(--green);
  transform: rotate(45deg);
}
.faq-item__toggle svg {
  width: 13px; height: 13px;
  stroke: rgba(255,255,255,0.75);
  fill: none;
  stroke-width: 2.2;
}
.faq-item.open .faq-item__toggle svg { stroke: #000; }

.faq-item__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.36s ease;
}
.faq-item__a-inner {
  padding-bottom: 22px;
  font-size: 14.5px;
  color: rgba(255,255,255,0.58);
  line-height: 1.78;
}


/* ============================================================
   17. CONTACT / FINAL CTA SECTION
   ============================================================ */
.section-contact {
  background: var(--black);
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* Center glow */
.section-contact::before {
  content: '';
  position: absolute;
  width: 900px; height: 900px;
  background: radial-gradient(circle, rgba(0, 200, 83, 0.07) 0%, transparent 65%);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.contact__heading {
  color: var(--white);
  max-width: 580px;
  margin: 0 auto 22px;
}

.contact__body {
  font-size: 17px;
  color: var(--muted-dark);
  max-width: 460px;
  margin: 0 auto 44px;
  line-height: 1.75;
}

.contact__cards {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  margin-bottom: 44px;
}

.contact-card {
  width: 100%;
  max-width: 300px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border-dark);
  border-radius: var(--r-card);
  padding: 26px 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  transition: border-color var(--t-base), background var(--t-base), transform var(--t-fast);
}
.contact-card:hover {
  border-color: var(--green);
  background: rgba(0, 200, 83, 0.055);
  transform: translateY(-4px);
}

.contact-card__icon { font-size: 22px; margin-bottom: 2px; }
.contact-card__label {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--green);
}
.contact-card__value {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  overflow-wrap: anywhere;
}

.contact__trust {
  font-size: 13px;
  color: rgba(255,255,255,0.3);
  letter-spacing: 0.3px;
  margin-bottom: 20px;
}

.contact__urgency {
  display: inline-block;
  font-size: 12.5px;
  color: rgba(255,255,255,0.35);
  font-style: italic;
  padding: 9px 18px;
  border: 1px dashed rgba(255,255,255,0.12);
  border-radius: var(--r-pill);
}


/* ============================================================
   18. FOOTER
   ============================================================ */
.site-footer {
  background: var(--black);
  border-top: 1px solid var(--border-dark);
  padding: 52px 0 calc(36px + env(safe-area-inset-bottom));
}

.footer__top {
  display: flex;
  flex-direction: column;
  gap: 36px;
  margin-bottom: 40px;
}

.footer__logo-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}
.footer__logo-img {
  width: 46px;
  height: 46px;
  object-fit: contain;
  filter: drop-shadow(0 0 16px rgba(0, 200, 83, 0.30));
}
.footer__logo {
  font-family: var(--font-heading);
  font-size: 19px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.02em;
}
.footer__logo span { color: var(--green); }

.footer__tagline {
  font-size: 13px;
  color: rgba(255,255,255,0.28);
  font-style: italic;
}

.footer__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 20px;
}
.footer__nav a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 4px 0;
  font-size: 13.5px;
  color: rgba(255,255,255,0.45);
  transition: color var(--t-base);
}
.footer__nav a:hover { color: var(--white); }

.footer__contact {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.footer__contact a {
  font-size: 13.5px;
  color: rgba(255,255,255,0.45);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  padding: 4px 0;
  transition: color var(--t-base);
}
.footer__contact a:hover { color: var(--green); }

.footer__bottom {
  border-top: 1px solid var(--border-dark);
  padding-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__copy {
  font-size: 12.5px;
  color: rgba(255,255,255,0.22);
}

.footer__disc {
  font-size: 11.5px;
  color: rgba(255,255,255,0.16);
  line-height: 1.6;
}


/* ============================================================
   19. RESPONSIVE — TABLET (768px+)
   ============================================================ */
@media (min-width: 768px) {

  .cred-sep { display: block; }

  .problem__grid  { grid-template-columns: repeat(2, 1fr); }
  .why__list      { grid-template-columns: repeat(2, 1fr); }
  .proof__grid    { grid-template-columns: repeat(2, 1fr); }
  .fit__cols      { grid-template-columns: repeat(2, 1fr); }

  .service-card   { flex: 1 1 calc(50% - 9px); max-width: calc(50% - 9px); }

  .contact__cards { flex-direction: row; justify-content: center; }

  .footer__top {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }

  .footer__bottom {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }
}


/* ============================================================
   19b. RESPONSIVE — NAV DESKTOP (900px+)
   Below this, the hamburger stays active so the 6-link nav +
   lang + CTA doesn't crowd against the logo on narrow tablets.
   ============================================================ */
@media (min-width: 900px) {
  .nav__links     { display: flex; gap: 22px; }
  .nav__right     { gap: 22px; }
  .nav__cta       { display: inline-flex; }
  .nav__hamburger { display: none; }
}


/* ============================================================
   20. RESPONSIVE — DESKTOP (1024px+)
   ============================================================ */
@media (min-width: 1024px) {

  :root { --sp-section: 108px; }

  .nav__links     { gap: 28px; }
  .nav__right     { gap: 32px; }

  .service-card   { flex: 1 1 calc(33.333% - 12px); max-width: calc(33.333% - 12px); }
  .why__list      { gap: 22px; }

  .process__steps {
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
  }

  .step-item {
    flex-direction: column;
    gap: 14px;
    align-items: flex-start;
  }

  .step-item__num {
    width: auto;
    text-align: left;
  }
}


/* ============================================================
   21. REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-stagger > * { opacity: 1; transform: none; transition: none; }
  .hero__badge, .hero__heading, .hero__sub,
  .hero__cta, .hero__trust { animation: none; opacity: 1; transform: none; }
  * { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; }
}


/* ============================================================
   22. PREMIUM VISUAL ENHANCEMENTS
   ============================================================ */

/* --- Hero: gradient text on the italic em --- */
.hero__heading em {
  font-style: normal;
  background: linear-gradient(135deg, #00C853 0%, #69FF97 60%, #00C853 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  background-size: 200% auto;
  animation: heroFadeUp 0.6s ease both 0.10s, gradientShift 4s ease-in-out infinite;
}

@keyframes gradientShift {
  0%, 100% { background-position: 0% center; }
  50%       { background-position: 100% center; }
}

/* --- Hero badge: add floating animation --- */
.hero__badge {
  animation: heroFadeUp 0.6s ease both, float 5s ease-in-out 0.6s infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-5px); }
}

/* --- Hero cursor glow (positioned by JS) --- */
.hero-cursor-glow {
  position: absolute;
  width: 640px;
  height: 640px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 200, 83, 0.09) 0%, transparent 70%);
  pointer-events: none;
  transform: translate(-50%, -50%);
  z-index: 0;
  opacity: 0;
  transition: opacity 0.5s ease;
  will-change: left, top;
}
.section-hero:hover .hero-cursor-glow { opacity: 1; }

/* Ensure hero container is above glow */
.section-hero .container { position: relative; z-index: 1; }

/* --- Button shimmer sweep on hover --- */
.btn-primary {
  position: relative;
  overflow: hidden;
}
.btn-primary::after {
  content: '';
  position: absolute;
  top: 0;
  left: -80%;
  width: 55%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 255, 255, 0.22) 50%,
    transparent 100%
  );
  transform: skewX(-18deg);
  transition: left 0.55s ease;
  pointer-events: none;
}
.btn-primary:hover::after { left: 140%; }

/* --- Enhanced section glows --- */
.section-problem::after,
.section-why::before {
  content: '';
  position: absolute;
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, rgba(0, 200, 83, 0.055) 0%, transparent 65%);
  pointer-events: none;
}
.section-problem { position: relative; overflow: hidden; }
.section-problem::after  { bottom: -140px; right: -100px; }

.section-why { position: relative; overflow: hidden; }
.section-why::before { top: -100px; left: -120px; }

/* --- Service card 3-D tilt support --- */
.service-card { transform-style: preserve-3d; perspective: 800px; }

/* --- Proof card upgrades: remove old placeholder style --- */
.proof-card--placeholder {
  border-style: solid;
  border-color: var(--border-dark);
  background: rgba(255,255,255,0.035);
}

/* --- Proof card: case study variant --- */
.proof-card--case {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border-dark);
  border-radius: var(--r-card);
  padding: 30px 28px;
  transition: border-color var(--t-base), background var(--t-base), transform var(--t-base), box-shadow var(--t-base);
}
.proof-card--case:hover {
  border-color: rgba(0, 200, 83, 0.32);
  background: rgba(0, 200, 83, 0.04);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0, 200, 83, 0.08);
}

.proof-card__header {
  margin-bottom: 20px;
}

.proof-stat-row--after {
  margin-bottom: 16px;
}
.proof-stat-label--after {
  color: var(--green) !important;
  opacity: 0.85;
}
.proof-stat-value--after {
  font-size: 15px !important;
  font-weight: 700 !important;
  color: var(--green) !important;
  font-style: normal !important;
}

.proof-card__change {
  background: rgba(0, 200, 83, 0.06);
  border: 1px solid rgba(0, 200, 83, 0.14);
  border-radius: var(--r-sm);
  padding: 12px 14px;
  font-size: 12.5px;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
  margin-top: 16px;
}

.proof-change-badge {
  display: inline-block;
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--green);
  background: rgba(0, 200, 83, 0.12);
  border-radius: 4px;
  padding: 2px 7px;
  margin-bottom: 6px;
  margin-right: 6px;
}

/* --- Proof card: testimonial variant --- */
.proof-card--testimonial {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border-dark);
  border-radius: var(--r-card);
  padding: 30px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: border-color var(--t-base), background var(--t-base), transform var(--t-base), box-shadow var(--t-base);
}
.proof-card--testimonial:hover {
  border-color: rgba(0, 200, 83, 0.30);
  background: rgba(0, 200, 83, 0.035);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0, 200, 83, 0.07);
}

.proof-card__stars {
  font-size: 14px;
  color: var(--green);
  letter-spacing: 2px;
}

.proof-card__quote {
  font-size: 15.5px;
  color: rgba(255,255,255,0.75);
  font-style: italic;
  line-height: 1.72;
  flex-grow: 1;
}

.proof-card__attrib {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--border-dark);
}

.proof-attrib-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(0,200,83,0.25), rgba(0,200,83,0.08));
  border: 1.5px solid rgba(0,200,83,0.30);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  color: var(--green);
  letter-spacing: 0.5px;
  flex-shrink: 0;
}
.proof-attrib-avatar--alt {
  background: linear-gradient(135deg, rgba(0,200,83,0.18), rgba(0,200,83,0.05));
}

.proof-card__attr {
  font-family: var(--font-heading);
  font-size: 13.5px;
  font-weight: 700;
  color: var(--white);
}
.proof-card__attr-sub {
  font-size: 11.5px;
  color: rgba(255,255,255,0.38);
  margin-top: 2px;
}

/* --- Stats section --- */
.section-stats {
  padding: 64px 0;
  background: var(--black);
  border-top: 1px solid var(--border-dark);
  border-bottom: 1px solid var(--border-dark);
  position: relative;
  overflow: hidden;
}

.section-stats::before {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(0, 200, 83, 0.06) 0%, transparent 65%);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.stats__row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px 20px;
  position: relative;
  z-index: 1;
}

.stat-block {
  text-align: center;
}

.stat-block__num {
  font-family: var(--font-heading);
  font-size: clamp(40px, 8vw, 64px);
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  letter-spacing: -0.03em;
  margin-bottom: 10px;
  background: linear-gradient(135deg, #fff 40%, rgba(0,200,83,0.85) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-block__label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.38);
}

.stat-divider {
  display: none;
}

@media (min-width: 768px) {
  .stats__row {
    grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
    gap: 0;
    align-items: center;
  }
  .stat-divider {
    display: block;
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, transparent, var(--border-dark), transparent);
  }
}

/* --- Enhanced FAQ hover --- */
.faq-item__q:hover .faq-item__toggle {
  background: rgba(0, 200, 83, 0.12);
  border-color: var(--green-border);
}

/* --- Contact cards: glassmorphism upgrade --- */
.contact-card {
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.contact-card:hover {
  box-shadow: 0 16px 48px rgba(0, 200, 83, 0.12);
}

/* --- Problem card left accent on hover --- */
.problem-card {
  border-left: 2px solid transparent;
  transition: border-color var(--t-base), background var(--t-base), border-left-color var(--t-base);
}
.problem-card:hover {
  border-left-color: var(--green);
}

/* --- Why-item icon glow on hover --- */
.why-item:hover .why-item__icon {
  background: rgba(0, 200, 83, 0.15);
  border-color: rgba(0, 200, 83, 0.4);
  box-shadow: 0 0 16px rgba(0, 200, 83, 0.18);
  transition: background var(--t-base), border-color var(--t-base), box-shadow var(--t-base);
}

/* --- Service card glow --- */
.service-card:hover {
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.07), 0 0 0 1px rgba(0, 200, 83, 0.18);
}

/* --- Step numbers: brighter on hover --- */
.step-item:hover .step-item__num {
  opacity: 0.75;
  transition: opacity var(--t-base);
}

/* --- Credibility strip: item highlight --- */
.cred-item:hover {
  color: var(--green);
  transition: color var(--t-base);
}

/* --- Reveal: slightly more dramatic easing --- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

.reveal-stagger > * {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.55s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.55s cubic-bezier(0.16, 1, 0.3, 1);
}

/* --- Nav CTA glow pulse on desktop --- */
@media (min-width: 768px) {
  .nav__cta:hover {
    box-shadow: 0 0 20px rgba(0, 200, 83, 0.35);
  }
}

/* --- Process note: subtle green glow on hover --- */
.process__note:hover {
  border-color: rgba(0, 200, 83, 0.22);
  color: var(--text-dark);
  transition: border-color var(--t-base), color var(--t-base);
}

/* --- Trust pills: hover state --- */
.trust-pill:hover {
  color: rgba(255,255,255,0.78);
  transition: color var(--t-base);
}

/* --- Proof trust line: gradient --- */
.proof__trust {
  background: linear-gradient(90deg, transparent, var(--border-dark), transparent);
  padding-top: 36px;
  border-top: 0;
  position: relative;
}
.proof__trust::before {
  content: '';
  position: absolute;
  top: 0; left: 10%; right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0,200,83,0.25), transparent);
}

/* Entrance glow flash for proof cards */
@keyframes glowIn {
  0%   { box-shadow: 0 0 0 0 rgba(0, 200, 83, 0); }
  40%  { box-shadow: 0 0 28px 4px rgba(0, 200, 83, 0.14); }
  100% { box-shadow: 0 0 0 0 rgba(0, 200, 83, 0); }
}
.proof-card--case.glow-in,
.proof-card--testimonial.glow-in,
.proof-card--dashboard.glow-in {
  animation: glowIn 1.2s cubic-bezier(0.16, 1, 0.3, 1) both;
}


/* ============================================================
   23. DASHBOARD PROOF CARDS (screenshot-based case studies)
   ============================================================ */

/* Dashboard grid: 1-col mobile, 3-col from tablet+ (avoids the 2+1 orphan
   that a 2-col tablet layout would create with 3 cards). */
.proof__dashboards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
  margin-bottom: 34px;
}
@media (min-width: 768px) { .proof__dashboards { grid-template-columns: repeat(3, 1fr); gap: 18px; } }
@media (min-width: 1024px) { .proof__dashboards { gap: 24px; } }

/* Testimonial grid: 1-col mobile, 2-col tablet+ */
.proof__testimonials {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
  margin-bottom: 48px;
}
@media (min-width: 768px) { .proof__testimonials { grid-template-columns: repeat(2, 1fr); } }

/* Dashboard card */
.proof-card--dashboard {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border-dark);
  border-radius: var(--r-card);
  padding: 16px 16px 24px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
  overflow: hidden;
  transition: border-color var(--t-base), background var(--t-base),
              transform var(--t-base), box-shadow var(--t-base);
}
.proof-card--dashboard:hover {
  border-color: rgba(0, 200, 83, 0.35);
  background: rgba(0, 200, 83, 0.045);
  transform: translateY(-5px);
  box-shadow: 0 20px 56px rgba(0, 200, 83, 0.12);
}

.proof-card__image-wrap {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.06);
  background: #0a0a0a;
}
.proof-card__image {
  display: block;
  width: 100%;
  height: auto;
  transition: transform 0.55s cubic-bezier(0.16, 1, 0.3, 1);
}
.proof-card--dashboard:hover .proof-card__image { transform: scale(1.035); }

.proof-card__image-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 100%, rgba(0,200,83,0.22) 0%, transparent 58%);
  pointer-events: none;
  opacity: 0;
  transition: opacity var(--t-base);
}
.proof-card--dashboard:hover .proof-card__image-glow { opacity: 1; }

.proof-card__meta {
  padding: 0 8px;
}

.proof-card--dashboard .proof-card__tag {
  margin-bottom: 6px;
}
.proof-card--dashboard .proof-card__type {
  margin-bottom: 0;
}

.proof-card__highlight {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
  margin-bottom: 8px;
}

.proof-card__highlight-num {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.02em;
  line-height: 1;
  background: linear-gradient(135deg, #fff 45%, rgba(0,200,83,0.9) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.proof-card__highlight-delta {
  display: inline-flex;
  align-items: center;
  font-size: 11.5px;
  font-weight: 700;
  color: var(--green);
  background: rgba(0, 200, 83, 0.12);
  border: 1px solid rgba(0, 200, 83, 0.22);
  padding: 4px 9px;
  border-radius: 4px;
  letter-spacing: 0.3px;
}

.proof-card__footnote {
  font-size: 11.5px;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.3px;
  margin-top: 2px;
}
