/* ================================================================
   GREEN PLANT ENERGY OIL & GAS LIMITED — Stylesheet
   Color Palette:
     Primary Green  : #1a6b3c
     Light Green    : #2ecc71
     Amber/Gold     : #f5a623
     Dark Navy      : #0d1b2a
     Mid Dark       : #1a2332
     Light BG       : #f8f9fa
     Alt BG         : #eef4f0
     Text Dark      : #1a1a2e
     Text Mid       : #4a5568
================================================================ */

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Open Sans', system-ui, sans-serif;
  color: #1a1a2e;
  background: #fff;
  line-height: 1.65;
  overflow-x: hidden;
}

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

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4, h5 {
  font-family: 'Montserrat', sans-serif;
  line-height: 1.25;
  font-weight: 700;
}

/* ── CONTAINER ── */
.container {
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: 1.25rem;
}

/* ── UTILITY CLASSES ── */
.section { padding-block: 5rem; }
.section-alt { background: #eef4f0; }

.section-header {
  text-align: center;
  max-width: 680px;
  margin-inline: auto;
  margin-bottom: 3.5rem;
}

.section-badge {
  display: inline-block;
  background: #f5a623;
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: .3rem .85rem;
  border-radius: 2rem;
  margin-bottom: .9rem;
}

.section-title {
  font-size: clamp(1.65rem, 4vw, 2.4rem);
  color: #0d1b2a;
  margin-bottom: 1rem;
}

.section-subtitle { color: #4a5568; font-size: 1.05rem; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: .95rem;
  padding: .85rem 2rem;
  border-radius: .4rem;
  transition: all .25s ease;
  white-space: nowrap;
}

.btn-primary {
  background: #f5a623;
  color: #0d1b2a;
  box-shadow: 0 4px 14px rgba(245,166,35,.35);
}
.btn-primary:hover {
  background: #e09410;
  box-shadow: 0 6px 20px rgba(245,166,35,.45);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,.7);
}
.btn-outline:hover {
  background: rgba(255,255,255,.12);
  border-color: #fff;
}

.btn-full { width: 100%; }

/* ═══════════════════════════════════════
   NAVIGATION
═══════════════════════════════════════ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: background .3s, box-shadow .3s, padding .3s;
  padding-block: 1.1rem;
}

.site-header.scrolled {
  background: rgba(10,30,18,.97);
  box-shadow: 0 2px 20px rgba(0,0,0,.4);
  padding-block: .65rem;
  backdrop-filter: blur(8px);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

/* Brand */
.brand {
  display: flex;
  align-items: center;
  gap: .75rem;
  flex-shrink: 0;
}

.logo-svg { width: 46px; height: 46px; flex-shrink: 0; }
.logo-svg--sm { width: 40px; height: 40px; }

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}
.brand-main {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: .95rem;
  color: #fff;
  letter-spacing: .02em;
}
.brand-sub {
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: .68rem;
  color: #f5a623;
  letter-spacing: .04em;
  text-transform: uppercase;
}

/* Nav Links */
.nav-links {
  display: flex;
  align-items: center;
  gap: .25rem;
}

.nav-link {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: .88rem;
  color: rgba(255,255,255,.88);
  padding: .45rem .85rem;
  border-radius: .3rem;
  transition: color .2s, background .2s;
  letter-spacing: .02em;
}
.nav-link:hover { color: #f5a623; background: rgba(245,166,35,.1); }

.nav-cta {
  background: #f5a623;
  color: #0d1b2a !important;
  padding: .45rem 1.1rem;
  border-radius: .3rem;
  margin-left: .5rem;
}
.nav-cta:hover { background: #e09410 !important; }

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: .4rem;
  z-index: 1100;
}
.nav-toggle span {
  display: block;
  width: 26px;
  height: 2.5px;
  background: #fff;
  border-radius: 2px;
  transition: transform .3s, opacity .3s;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ═══════════════════════════════════════
   HERO
═══════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  background:
    linear-gradient(160deg, rgba(10,30,18,.88) 0%, rgba(13,27,42,.75) 100%),
    url('https://images.unsplash.com/photo-1558618666-fcd25c85cd64?w=1600&q=80') center / cover no-repeat;
  padding-block: 7rem 5rem;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(10,40,20,.7) 0%, rgba(13,27,42,.3) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 720px;
}

.hero-tagline {
  font-family: 'Montserrat', sans-serif;
  font-size: .9rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: #f5a623;
  margin-bottom: 1.1rem;
}

.hero-title {
  font-size: clamp(2.2rem, 6vw, 3.8rem);
  color: #fff;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.4rem;
  text-shadow: 0 2px 12px rgba(0,0,0,.4);
}

.hero-body {
  font-size: clamp(1rem, 2.5vw, 1.15rem);
  color: rgba(255,255,255,.88);
  max-width: 560px;
  margin-bottom: 2.2rem;
  line-height: 1.7;
}

.hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero-scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}
.hero-scroll-indicator span {
  display: block;
  width: 24px;
  height: 38px;
  border: 2px solid rgba(255,255,255,.4);
  border-radius: 12px;
  position: relative;
}
.hero-scroll-indicator span::after {
  content: '';
  position: absolute;
  top: 5px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 8px;
  background: #f5a623;
  border-radius: 2px;
  animation: scroll-bounce 1.8s infinite;
}
@keyframes scroll-bounce {
  0%, 100% { opacity: 1; transform: translateX(-50%) translateY(0); }
  80% { opacity: 0; transform: translateX(-50%) translateY(14px); }
}

/* ═══════════════════════════════════════
   STATS BAND
═══════════════════════════════════════ */
.stats-band {
  background: linear-gradient(135deg, #1a6b3c 0%, #0d3d22 100%);
  padding-block: 3rem;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  text-align: center;
}

.stat-item { padding: 1rem; }

.stat-number {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  color: #f5a623;
  line-height: 1;
}
.stat-suffix {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.2rem, 3vw, 1.8rem);
  font-weight: 800;
  color: #f5a623;
}
.stat-label {
  color: rgba(255,255,255,.82);
  font-size: .88rem;
  margin-top: .4rem;
  letter-spacing: .04em;
}

/* ═══════════════════════════════════════
   SERVICES
═══════════════════════════════════════ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.service-card {
  background: #fff;
  border: 1px solid #e2ede8;
  border-radius: .75rem;
  padding: 2rem 1.75rem;
  transition: transform .25s, box-shadow .25s, border-color .25s;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, #1a6b3c, #f5a623);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s;
}
.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(26,107,60,.15);
  border-color: #b5d4c3;
}
.service-card:hover::before { transform: scaleX(1); }

.service-icon {
  width: 64px;
  height: 64px;
  margin-bottom: 1.25rem;
}

.service-title {
  font-size: 1.1rem;
  color: #0d1b2a;
  margin-bottom: .65rem;
}

.service-desc { color: #4a5568; font-size: .92rem; line-height: 1.65; }

/* ═══════════════════════════════════════
   ABOUT
═══════════════════════════════════════ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: center;
}

.about-visual {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.about-logo-display {
  background: linear-gradient(135deg, #0d3d22 0%, #1a2332 100%);
  border-radius: 50%;
  padding: 1.5rem;
  box-shadow: 0 16px 60px rgba(26,107,60,.35);
}

.about-emblem { width: min(280px, 70vw); height: auto; }

.about-badge {
  position: absolute;
  bottom: -1rem;
  right: 2rem;
  background: #f5a623;
  color: #0d1b2a;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: .8rem;
  padding: .5rem 1.1rem;
  border-radius: 2rem;
  box-shadow: 0 4px 14px rgba(245,166,35,.4);
  letter-spacing: .04em;
}

.about-content { display: flex; flex-direction: column; gap: 1.1rem; }

.about-content .section-title { text-align: left; }
.about-content .section-badge { align-self: flex-start; }

.about-content p { color: #4a5568; font-size: .97rem; }

.about-list {
  display: flex;
  flex-direction: column;
  gap: .75rem;
  margin-top: .5rem;
}
.about-list li {
  display: flex;
  align-items: center;
  gap: .75rem;
  color: #1a1a2e;
  font-weight: 500;
  font-size: .93rem;
}
.about-list li svg { width: 20px; height: 20px; flex-shrink: 0; }

/* ═══════════════════════════════════════
   WHY US – FEATURES
═══════════════════════════════════════ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.feature-card {
  background: #fff;
  border-radius: .75rem;
  padding: 1.75rem 1.5rem;
  box-shadow: 0 2px 16px rgba(26,107,60,.08);
  transition: transform .25s, box-shadow .25s;
}
.feature-card:hover { transform: translateY(-4px); box-shadow: 0 10px 30px rgba(26,107,60,.14); }

.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: .5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}
.feature-icon svg { width: 28px; height: 28px; }
.feature-icon--green { background: #eef4f0; color: #1a6b3c; }
.feature-icon--amber { background: #fef5e7; color: #e09410; }

.feature-card h4 {
  font-size: 1rem;
  margin-bottom: .5rem;
  color: #0d1b2a;
}
.feature-card p { color: #4a5568; font-size: .88rem; line-height: 1.6; }

/* ═══════════════════════════════════════
   PROCESS
═══════════════════════════════════════ */
.process-steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.step {
  flex: 1;
  min-width: 160px;
  max-width: 220px;
  text-align: center;
  padding: 1.5rem 1rem;
}

.step-num {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  color: #f5a623;
  line-height: 1;
  margin-bottom: .75rem;
}

.step h4 { color: #0d1b2a; margin-bottom: .5rem; }
.step p { color: #4a5568; font-size: .88rem; }

.step-arrow {
  font-size: 1.8rem;
  color: #1a6b3c;
  opacity: .5;
  align-self: center;
  padding-bottom: 1rem;
  flex-shrink: 0;
}

/* ═══════════════════════════════════════
   SERVICE AREAS
═══════════════════════════════════════ */
.areas-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}

.area-card {
  background: #fff;
  border: 1px solid #e2ede8;
  border-radius: .65rem;
  padding: 1.4rem 1.25rem;
  transition: transform .22s, box-shadow .22s, border-color .22s;
  position: relative;
}
.area-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(26,107,60,.13);
  border-color: #1a6b3c;
}

.area-name {
  font-size: .97rem;
  color: #0d1b2a;
  margin-bottom: .5rem;
  font-weight: 700;
}

.area-card p {
  color: #4a5568;
  font-size: .83rem;
  line-height: 1.6;
  margin-bottom: .75rem;
}

.area-lga {
  display: inline-block;
  background: #eef4f0;
  color: #1a6b3c;
  font-family: 'Montserrat', sans-serif;
  font-size: .72rem;
  font-weight: 700;
  padding: .25rem .65rem;
  border-radius: 2rem;
  letter-spacing: .03em;
}

.areas-callout {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  background: linear-gradient(135deg, #eef4f0 0%, #fff 100%);
  border: 1.5px solid #b5d4c3;
  border-radius: .75rem;
  padding: 1.75rem 2rem;
}
.areas-callout-icon { flex-shrink: 0; }
.areas-callout-icon svg { width: 48px; height: 48px; }

.areas-callout h3 {
  font-size: 1.05rem;
  color: #0d1b2a;
  margin-bottom: .4rem;
}
.areas-callout p {
  color: #4a5568;
  font-size: .9rem;
  line-height: 1.6;
}
.areas-callout a { color: #1a6b3c; }
.areas-callout a:hover { color: #f5a623; }

/* ═══════════════════════════════════════
   CONTACT
═══════════════════════════════════════ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 3rem;
  align-items: start;
}

.contact-info { display: flex; flex-direction: column; gap: 1.25rem; }

.contact-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: #fff;
  border: 1px solid #e2ede8;
  border-radius: .65rem;
  padding: 1.25rem 1.4rem;
  transition: box-shadow .2s;
}
.contact-card:hover { box-shadow: 0 6px 20px rgba(26,107,60,.12); }

.contact-icon {
  width: 40px;
  height: 40px;
  background: #eef4f0;
  border-radius: .5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-icon svg { width: 22px; height: 22px; }

.contact-card h4 { font-size: .9rem; color: #0d1b2a; margin-bottom: .35rem; }
.contact-card p, .contact-card .contact-address { color: #4a5568; font-size: .88rem; line-height: 1.6; }

.contact-link {
  display: block;
  color: #1a6b3c;
  font-weight: 600;
  font-size: .88rem;
  transition: color .2s;
}
.contact-link:hover { color: #f5a623; }

/* Form */
.contact-form {
  background: #fff;
  border: 1px solid #e2ede8;
  border-radius: .75rem;
  padding: 2.25rem;
  box-shadow: 0 4px 24px rgba(26,107,60,.08);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: .4rem;
  margin-bottom: 1.1rem;
}

.form-group label {
  font-family: 'Montserrat', sans-serif;
  font-size: .82rem;
  font-weight: 600;
  color: #1a1a2e;
  letter-spacing: .02em;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: .75rem 1rem;
  border: 1.5px solid #d1ddd6;
  border-radius: .4rem;
  font-size: .93rem;
  color: #1a1a2e;
  background: #fafafa;
  transition: border-color .2s, box-shadow .2s;
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: #1a6b3c;
  box-shadow: 0 0 0 3px rgba(26,107,60,.12);
  background: #fff;
}
.form-group textarea { resize: vertical; min-height: 130px; }

.form-note { font-size: .8rem; color: #6b7a8d; margin-top: .75rem; text-align: center; }

.form-error {
  background: #fff5f5;
  border: 1px solid #fc8181;
  border-radius: .5rem;
  padding: .85rem 1.1rem;
  margin-top: .75rem;
  color: #c53030;
  font-size: .9rem;
  font-weight: 500;
}

.form-success {
  display: flex;
  align-items: center;
  gap: .75rem;
  background: #eef4f0;
  border: 1px solid #b5d4c3;
  border-radius: .5rem;
  padding: 1rem 1.25rem;
  margin-top: 1rem;
  font-weight: 600;
  color: #1a6b3c;
  font-size: .93rem;
}
.form-success svg { width: 28px; height: 28px; flex-shrink: 0; }

/* ═══════════════════════════════════════
   FOOTER
═══════════════════════════════════════ */
.footer {
  background: #0d1b2a;
  color: rgba(255,255,255,.78);
  padding-top: 4rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,.1);
}

.footer-brand .brand { margin-bottom: .85rem; }
.footer-brand .brand-main { color: #fff; }

.footer-tagline { font-size: .85rem; color: rgba(255,255,255,.55); margin-bottom: 1.1rem; font-style: italic; }

.footer-contact-quick { display: flex; flex-direction: column; gap: .45rem; }
.footer-contact-quick a {
  display: flex;
  align-items: center;
  gap: .5rem;
  color: rgba(255,255,255,.75);
  font-size: .85rem;
  transition: color .2s;
}
.footer-contact-quick a:hover { color: #f5a623; }
.footer-contact-quick svg { width: 16px; height: 16px; flex-shrink: 0; }

.footer-links h5 {
  color: #fff;
  font-size: .88rem;
  font-family: 'Montserrat', sans-serif;
  letter-spacing: .05em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.footer-links ul { display: flex; flex-direction: column; gap: .5rem; }
.footer-links li, .footer-links li a { font-size: .85rem; color: rgba(255,255,255,.65); transition: color .2s; }
.footer-links li a:hover { color: #f5a623; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: .5rem;
  padding-block: 1.5rem;
  font-size: .8rem;
  color: rgba(255,255,255,.4);
}

/* ═══════════════════════════════════════
   FLOATING CTA BUTTON
═══════════════════════════════════════ */
.float-cta {
  position: fixed;
  bottom: 2rem;
  right: 1.75rem;
  width: 54px;
  height: 54px;
  background: #1a6b3c;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(26,107,60,.5);
  z-index: 900;
  transition: transform .25s, background .25s;
  animation: pulse-ring 2.5s infinite;
}
.float-cta:hover { background: #f5a623; transform: scale(1.08); }
.float-cta svg { width: 24px; height: 24px; }

@keyframes pulse-ring {
  0%   { box-shadow: 0 0 0 0 rgba(26,107,60,.5); }
  70%  { box-shadow: 0 0 0 14px rgba(26,107,60,0); }
  100% { box-shadow: 0 0 0 0 rgba(26,107,60,0); }
}

/* ═══════════════════════════════════════
   RESPONSIVE — TABLET  ≤ 1024px
═══════════════════════════════════════ */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .areas-grid    { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid    { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-visual  { order: -1; }
  .contact-grid  { grid-template-columns: 1fr; }
  .footer-grid   { grid-template-columns: 1fr 1fr; }
  .stats-grid    { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
}

/* ═══════════════════════════════════════
   RESPONSIVE — MOBILE  ≤ 768px
═══════════════════════════════════════ */
@media (max-width: 768px) {
  /* Nav */
  .nav-toggle { display: flex; }

  .nav-links {
    position: fixed;
    inset: 0 0 0 30%;
    flex-direction: column;
    align-items: flex-start;
    padding: 5rem 2rem 2rem;
    background: rgba(10,30,18,.98);
    backdrop-filter: blur(12px);
    gap: .25rem;
    transform: translateX(100%);
    transition: transform .35s cubic-bezier(.4,0,.2,1);
    z-index: 1050;
  }
  .nav-links.open { transform: translateX(0); }
  .nav-link { font-size: 1.05rem; padding: .7rem 1rem; width: 100%; }
  .nav-cta  { margin-left: 0; margin-top: .5rem; width: 100%; text-align: center; justify-content: center; }

  /* Services */
  .services-grid { grid-template-columns: 1fr; }
  .areas-grid    { grid-template-columns: 1fr; }
  .areas-callout { flex-direction: column; text-align: center; }

  /* Features */
  .features-grid { grid-template-columns: 1fr; }

  /* Process */
  .process-steps { flex-direction: column; align-items: center; }
  .step-arrow { transform: rotate(90deg); padding: 0; margin-block: -.5rem; }

  /* Contact form row */
  .form-row { grid-template-columns: 1fr; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }

  /* Hero */
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { width: 100%; max-width: 340px; }
}

/* ═══════════════════════════════════════
   RESPONSIVE — SMALL MOBILE  ≤ 480px
═══════════════════════════════════════ */
@media (max-width: 480px) {
  .section { padding-block: 3.5rem; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .brand-text { display: none; }
  .contact-form { padding: 1.5rem 1.1rem; }
  .float-cta { bottom: 1.25rem; right: 1.25rem; width: 48px; height: 48px; }
}
