:root {
  color-scheme: dark;
  --ink: #080b0b;
  --ink-2: #101616;
  --ink-3: #17201f;
  --paper: #f4f5ef;
  --white: #ffffff;
  --muted: #a9b2ad;
  --line: rgba(255, 255, 255, 0.13);
  --lime: #a8ff00;
  --cyan: #50d9ff;
  --coral: #ff7769;
  --max: 1180px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--ink);
  color: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0;
  overflow-x: hidden;
}

body.menu-open { overflow: hidden; }

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, a { -webkit-tap-highlight-color: transparent; }
button { font: inherit; }

.skip-link {
  position: fixed;
  left: 1rem;
  top: -5rem;
  z-index: 100;
  background: var(--lime);
  color: var(--ink);
  padding: 0.75rem 1rem;
  font-weight: 800;
}
.skip-link:focus { top: 1rem; }

.wrap { width: min(calc(100% - 40px), var(--max)); margin-inline: auto; }

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  padding: 0 5vw;
  border-bottom: 1px solid transparent;
  transition: background 220ms ease, border-color 220ms ease, min-height 220ms ease;
}

.site-header.scrolled {
  min-height: 66px;
  background: rgba(8, 11, 11, 0.94);
  border-color: var(--line);
  backdrop-filter: blur(14px);
}

.brand { display: inline-flex; align-items: center; gap: 0.8rem; flex: 0 0 auto; }
.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  aspect-ratio: 1;
  border-radius: 8px;
  background: var(--lime);
}
.brand-mark::before {
  content: "";
  width: 20px;
  height: 22px;
  border: 3px solid var(--ink);
  border-radius: 3px;
}
.brand-mark span {
  position: absolute;
  width: 12px;
  height: 3px;
  background: var(--ink);
}
.brand-copy { display: flex; flex-direction: column; line-height: 1.05; }
.brand-copy strong { font-size: 0.98rem; font-weight: 950; }
.brand-copy small { margin-top: 0.28rem; color: var(--lime); font-size: 0.65rem; font-weight: 900; }

.site-nav { display: flex; align-items: center; gap: 1.8rem; font-weight: 700; font-size: 0.91rem; }
.site-nav > a:not(.nav-cta) { color: #d8dedb; transition: color 160ms ease; }
.site-nav > a:not(.nav-cta):hover { color: var(--lime); }
.site-nav .contact-link { color: var(--lime); font-variant-numeric: tabular-nums; }
.nav-cta {
  padding: 0.72rem 1.05rem;
  border: 1px solid rgba(168, 255, 0, 0.55);
  border-radius: 6px;
  color: var(--lime);
}

.menu-toggle { display: none; width: 44px; height: 44px; border: 1px solid var(--line); background: var(--ink-2); border-radius: 6px; }
.menu-toggle span { display: block; width: 20px; height: 2px; margin: 5px auto; background: var(--white); transition: transform 180ms ease; }

.hero {
  position: relative;
  min-height: min(850px, 94vh);
  display: flex;
  align-items: end;
  overflow: hidden;
  background: var(--ink);
}
.hero-image { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 56% center; }
.hero-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(4, 7, 7, 0.96) 0%, rgba(4, 7, 7, 0.79) 39%, rgba(4, 7, 7, 0.18) 73%, rgba(4, 7, 7, 0.28) 100%);
}
.hero-content { position: relative; z-index: 2; display: grid; grid-template-columns: minmax(0, 1fr) 430px; align-items: end; gap: 5rem; padding-top: 150px; padding-bottom: 100px; }
.hero-copy { max-width: 680px; }
.offer-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.62rem;
  padding: 0.48rem 0.72rem;
  border: 1px solid rgba(168, 255, 0, 0.46);
  background: rgba(10, 18, 12, 0.72);
  color: var(--lime);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}
.offer-pill span { width: 7px; height: 7px; border-radius: 50%; background: var(--lime); box-shadow: 0 0 0 5px rgba(168, 255, 0, 0.12); }
.hero h1 { margin: 1.2rem 0 0; font-size: clamp(4.2rem, 9vw, 8.6rem); line-height: 0.88; font-weight: 950; letter-spacing: 0; max-width: 8ch; }
.hero-lead { margin: 1.6rem 0 0.75rem; max-width: 590px; font-size: clamp(1.45rem, 2.5vw, 2.2rem); line-height: 1.14; font-weight: 850; }
.hero-body { margin: 0; max-width: 600px; color: #c8cfcb; font-size: 1.05rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.8rem; margin-top: 2rem; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0.8rem 1.25rem;
  border-radius: 6px;
  font-weight: 900;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--lime); color: var(--ink); }
.button-primary:hover { background: #c2ff4d; }
.button-secondary { border: 1px solid rgba(255, 255, 255, 0.32); background: rgba(8, 11, 11, 0.62); }
.button-secondary:hover { border-color: var(--white); }
.button-dark { width: 100%; background: var(--ink); color: var(--white); }

.hero-proof { align-self: end; border: 1px solid rgba(255,255,255,0.22); background: rgba(7, 12, 12, 0.76); backdrop-filter: blur(12px); }
.hero-proof div { display: grid; grid-template-columns: 120px 1fr; align-items: center; min-height: 78px; padding: 0 1.2rem; border-bottom: 1px solid var(--line); }
.hero-proof div:last-child { border-bottom: 0; }
.hero-proof strong { color: var(--lime); font-size: 1.28rem; }
.hero-proof span { color: #d2d8d5; font-weight: 700; }
.scroll-cue { position: absolute; z-index: 3; left: 5vw; bottom: 28px; display: flex; align-items: center; gap: 0.7rem; color: #c1c8c4; font-size: 0.78rem; font-weight: 800; text-transform: uppercase; }
.scroll-cue span { width: 34px; height: 1px; background: var(--lime); }

.trust-strip { background: var(--lime); color: var(--ink); }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.trust-grid p { margin: 0; min-height: 96px; padding: 1.3rem 1.2rem; border-right: 1px solid rgba(8,11,11,0.2); display: flex; flex-direction: column; justify-content: center; }
.trust-grid p:last-child { border-right: 0; }
.trust-grid strong { font-size: 1rem; }
.trust-grid span { font-size: 0.84rem; opacity: 0.72; }

.section { padding: 110px 0; }
.section-intro { display: grid; grid-template-columns: minmax(0, 1.4fr) minmax(260px, 0.6fr); gap: 4rem; align-items: end; margin-bottom: 3.2rem; }
.eyebrow { display: block; color: var(--lime); font-size: 0.76rem; font-weight: 950; text-transform: uppercase; }
.section-intro .eyebrow { grid-column: 1 / -1; margin-bottom: -3.2rem; }
.section h2 { margin: 0; font-size: clamp(2.3rem, 5.6vw, 5rem); line-height: 0.98; font-weight: 950; max-width: 14ch; }
.section-intro p { margin: 0; color: var(--muted); font-size: 1.05rem; }

.benefits { background: var(--paper); color: var(--ink); }
.benefits .eyebrow { color: #348700; }
.benefits .section-intro p { color: #535c57; }
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid rgba(8,11,11,0.18); border-left: 1px solid rgba(8,11,11,0.18); }
.feature { min-height: 270px; padding: 2rem; border-right: 1px solid rgba(8,11,11,0.18); border-bottom: 1px solid rgba(8,11,11,0.18); background: rgba(255,255,255,0.4); }
.feature-wide { grid-column: span 2; display: grid; grid-template-columns: 60px 1fr; gap: 1rem; }
.feature-accent { background: var(--lime); }
.feature-number { color: #68706c; font-size: 0.74rem; font-weight: 900; }
.feature h3 { margin: 1.4rem 0 0.7rem; font-size: 1.4rem; line-height: 1.15; }
.feature-wide h3 { margin-top: 0; }
.feature p { margin: 0; color: #56605a; }
.feature-accent p { color: rgba(8,11,11,0.7); }
.channel-visual { grid-column: 1 / -1; display: flex; align-items: center; gap: 0.7rem; margin-top: auto; padding-top: 2rem; }
.channel-visual span { padding: 0.48rem 0.62rem; background: var(--ink); color: var(--white); border-radius: 4px; font-size: 0.73rem; font-weight: 900; }
.channel-visual i { flex: 1; height: 1px; background: rgba(8,11,11,0.35); }

.operations { background: #e9ece5; color: var(--ink); padding-top: 0; }
.operations-grid { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 5rem; align-items: center; }
.operations-photo { position: relative; min-height: 620px; overflow: hidden; }
.operations-photo img { width: 100%; height: 100%; min-height: 620px; object-fit: cover; }
.photo-label { position: absolute; right: 1rem; bottom: 1rem; display: flex; align-items: center; gap: 0.6rem; padding: 0.8rem 1rem; background: var(--ink); color: var(--white); border-radius: 5px; font-weight: 850; }
.photo-label span { width: 9px; height: 9px; background: var(--lime); border-radius: 50%; }
.operations-copy .eyebrow { color: #348700; margin-bottom: 1rem; }
.operations-copy h2 { max-width: 11ch; }
.operations-copy > p { color: #4d5752; font-size: 1.05rem; }
.check-list { list-style: none; padding: 0; margin: 2rem 0 0; border-top: 1px solid rgba(8,11,11,0.18); }
.check-list li { display: flex; align-items: center; gap: 0.8rem; padding: 1rem 0; border-bottom: 1px solid rgba(8,11,11,0.18); font-weight: 750; }
.check-list span { display: grid; place-items: center; width: 26px; height: 26px; background: var(--lime); border-radius: 50%; font-size: 0.8rem; }

.difference { background: var(--ink-2); }
.section-intro-light p { color: #b2bbb6; }
.comparison { border-top: 1px solid var(--line); }
.comparison-head, .comparison-row { display: grid; grid-template-columns: 1fr 1fr; }
.comparison-head { min-height: 86px; align-items: center; color: var(--muted); text-transform: uppercase; font-size: 0.76rem; font-weight: 900; }
.comparison-head strong { color: var(--lime); }
.comparison-head > *, .comparison-row > * { padding: 1rem 1.8rem; }
.comparison-row { min-height: 76px; align-items: center; border-top: 1px solid var(--line); }
.comparison-row span { color: #8e9893; }
.comparison-row strong { border-left: 1px solid var(--line); font-size: 1.05rem; }
.comparison-row strong::before { content: "✓"; color: var(--lime); margin-right: 0.8rem; }
.resilience-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-top: 3rem; }
.resilience-card { padding: 1.8rem; border: 1px solid var(--line); background: var(--ink); }
.resilience-card h3 { margin: 1.3rem 0 0.5rem; }
.resilience-card p { margin: 0; color: var(--muted); }
.status-dot { display: block; width: 10px; height: 10px; border-radius: 50%; background: var(--lime); box-shadow: 0 0 0 7px rgba(168,255,0,0.1); }
.status-dot.cyan { background: var(--cyan); box-shadow: 0 0 0 7px rgba(80,217,255,0.1); }
.status-dot.coral { background: var(--coral); box-shadow: 0 0 0 7px rgba(255,119,105,0.1); }

.setup { background: var(--white); color: var(--ink); }
.setup .eyebrow { color: #348700; margin-bottom: 1rem; }
.setup-header { display: flex; align-items: end; justify-content: space-between; gap: 2rem; }
.free-stamp { flex: 0 0 auto; display: flex; flex-direction: column; align-items: center; justify-content: center; width: 154px; aspect-ratio: 1; border: 2px solid var(--ink); border-radius: 50%; transform: rotate(-6deg); }
.free-stamp small { font-weight: 850; }
.free-stamp strong { font-size: 1.75rem; }
.steps { list-style: none; display: grid; grid-template-columns: repeat(3, 1fr); padding: 0; margin: 4rem 0 0; border-top: 1px solid rgba(8,11,11,0.2); border-left: 1px solid rgba(8,11,11,0.2); }
.steps li { min-height: 260px; padding: 2rem; border-right: 1px solid rgba(8,11,11,0.2); border-bottom: 1px solid rgba(8,11,11,0.2); }
.steps > li > span { display: grid; place-items: center; width: 42px; height: 42px; border-radius: 50%; background: var(--ink); color: var(--lime); font-weight: 900; }
.steps h3 { margin: 3.8rem 0 0.5rem; font-size: 1.28rem; }
.steps p { margin: 0; color: #56605a; }

.pricing { background: var(--cyan); color: var(--ink); }
.pricing-layout { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 6rem; align-items: center; }
.pricing .eyebrow { color: #005f75; margin-bottom: 1rem; }
.pricing-copy p { max-width: 440px; color: #173d46; }
.price-card { background: var(--lime); padding: 2.3rem; border: 2px solid var(--ink); box-shadow: 18px 18px 0 var(--ink); }
.price-card-top { display: flex; justify-content: space-between; gap: 1rem; padding-bottom: 1.2rem; border-bottom: 1px solid rgba(8,11,11,0.25); font-size: 0.74rem; font-weight: 950; text-transform: uppercase; }
.price-card-top strong { padding: 0.3rem 0.5rem; background: var(--ink); color: var(--lime); border-radius: 4px; }
.price { display: flex; align-items: baseline; gap: 0.45rem; margin-top: 1.5rem; }
.price small { font-size: 1.2rem; font-weight: 900; }
.price strong { font-size: clamp(3.2rem, 6vw, 5.8rem); line-height: 1; }
.price span { font-weight: 800; }
.price-note { max-width: 470px; margin: 0.6rem 0 1.5rem; font-weight: 750; }
.price-card ul { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem 1.5rem; list-style: none; padding: 1.4rem 0; margin: 0; border-top: 1px solid rgba(8,11,11,0.25); }
.price-card li { position: relative; padding-left: 1.4rem; font-weight: 720; }
.price-card li::before { content: "✓"; position: absolute; left: 0; }
.extra-pack { display: flex; justify-content: space-between; gap: 1rem; margin-top: 1rem; padding-top: 1rem; border-top: 1px solid rgba(8,11,11,0.25); }
.extra-pack span { font-size: 0.8rem; font-weight: 900; text-transform: uppercase; }
.extra-pack strong { text-align: right; }
.contact-choice { display: grid; gap: 0.72rem; }
.contact-choice-label { color: #cbd2ce; font-size: 0.78rem; font-weight: 900; text-transform: uppercase; }
.contact-choice-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0.7rem; }
.contact-number {
  min-width: 0;
  min-height: 70px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-content: center;
  gap: 0.15rem 0.7rem;
  padding: 0.8rem 0.95rem;
  border: 1px solid rgba(168, 255, 0, 0.38);
  border-radius: 6px;
  background: #0c1210;
  color: var(--white);
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}
.contact-number:hover { transform: translateY(-2px); border-color: var(--lime); background: #111a16; }
.contact-number small { color: var(--lime); font-size: 0.68rem; font-weight: 900; text-transform: uppercase; }
.contact-number strong { grid-column: 1; font-size: 1rem; font-variant-numeric: tabular-nums; white-space: nowrap; }
.contact-number > span { grid-column: 2; grid-row: 1 / 3; align-self: center; color: var(--lime); font-size: 1.1rem; }
.contact-choice-dark { margin-top: 0.25rem; padding: 1rem; border: 1px solid rgba(8,11,11,0.28); background: rgba(255,255,255,0.2); }
.contact-choice-dark .contact-choice-label { color: #233129; }

.faq { background: var(--paper); color: var(--ink); }
.faq-layout { display: grid; grid-template-columns: 0.7fr 1.3fr; gap: 6rem; }
.faq .eyebrow { color: #348700; margin-bottom: 1rem; }
.faq-list { border-top: 1px solid rgba(8,11,11,0.2); }
.faq-list details { border-bottom: 1px solid rgba(8,11,11,0.2); }
.faq-list summary { display: flex; justify-content: space-between; gap: 1rem; padding: 1.5rem 0; cursor: pointer; list-style: none; font-size: 1.06rem; font-weight: 850; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary span { font-size: 1.5rem; line-height: 1; transition: transform 180ms ease; }
.faq-list details[open] summary span { transform: rotate(45deg); }
.faq-list details p { max-width: 650px; margin: -0.5rem 0 1.5rem; color: #56605a; }

.final-cta { background: var(--ink); padding: 90px 0; }
.final-cta-inner { display: grid; grid-template-columns: 1.2fr 0.8fr; align-items: end; gap: 5rem; }
.final-cta h2 { margin: 1rem 0 0; max-width: 12ch; font-size: clamp(2.8rem, 6vw, 5.6rem); line-height: 0.98; }
.final-cta-action { border-left: 1px solid var(--line); padding-left: 2rem; }
.final-cta-action p { display: flex; flex-direction: column; margin: 0 0 1.4rem; }
.final-cta-action p strong { font-size: 1.4rem; }
.final-cta-action p span { color: var(--lime); font-weight: 800; }
.final-cta-buttons { display: grid; gap: 1rem; }
.text-link { color: var(--white); font-weight: 800; text-decoration: underline; text-decoration-color: var(--lime); text-underline-offset: 5px; }
.text-link:hover { color: var(--lime); }

.site-footer { background: #050707; border-top: 1px solid var(--line); padding: 2rem 0; }
.footer-inner { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 2rem; }
.footer-inner p { color: var(--muted); text-align: center; font-size: 0.86rem; }
.footer-inner > a:last-child { color: var(--lime); font-weight: 800; font-size: 0.86rem; }

.reveal { opacity: 0; transform: translateY(22px); transition: opacity 650ms ease, transform 650ms ease; }
.reveal.visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  * { transition-duration: 0.01ms !important; }
}

@media (max-width: 980px) {
  .site-header { padding-inline: 24px; }
  .menu-toggle { display: block; }
  .site-nav {
    position: fixed;
    inset: 66px 0 auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 1rem 24px 1.5rem;
    background: rgba(8, 11, 11, 0.98);
    border-bottom: 1px solid var(--line);
  }
  .site-nav.open { display: flex; }
  .site-nav a { padding: 1rem 0; border-bottom: 1px solid var(--line); }
  .site-nav .nav-cta { margin-top: 0.8rem; padding-inline: 1rem; text-align: center; }
  .hero { min-height: 900px; }
  .hero-content { grid-template-columns: 1fr; gap: 2rem; padding-top: 130px; padding-bottom: 84px; }
  .hero-copy { max-width: 650px; }
  .hero-proof { width: min(100%, 560px); display: grid; grid-template-columns: repeat(3, 1fr); }
  .hero-proof div { display: flex; flex-direction: column; align-items: flex-start; justify-content: center; border-bottom: 0; border-right: 1px solid var(--line); }
  .hero-proof div:last-child { border-right: 0; }
  .scroll-cue { display: none; }
  .trust-grid { grid-template-columns: 1fr 1fr; }
  .trust-grid p:nth-child(2) { border-right: 0; }
  .trust-grid p:nth-child(-n+2) { border-bottom: 1px solid rgba(8,11,11,0.2); }
  .section-intro, .pricing-layout, .faq-layout, .final-cta-inner { grid-template-columns: 1fr; gap: 2rem; }
  .section-intro .eyebrow { margin-bottom: -1.3rem; }
  .feature-grid { grid-template-columns: 1fr 1fr; }
  .feature-wide { grid-column: span 2; }
  .operations-grid { grid-template-columns: 1fr; gap: 3rem; }
  .operations-photo, .operations-photo img { min-height: 520px; }
  .pricing-copy h2 { max-width: 13ch; }
  .final-cta-action { border-left: 0; border-top: 1px solid var(--line); padding: 1.5rem 0 0; }
}

@media (max-width: 680px) {
  .wrap { width: min(calc(100% - 28px), var(--max)); }
  .site-header { min-height: 66px; padding-inline: 14px; }
  .brand-copy strong { font-size: 0.9rem; }
  .brand-mark { width: 38px; }
  .hero { min-height: 860px; align-items: end; }
  .hero-image { object-position: 67% center; }
  .hero-shade { background: linear-gradient(180deg, rgba(4,7,7,0.3) 0%, rgba(4,7,7,0.72) 36%, rgba(4,7,7,0.98) 74%); }
  .hero-content { padding-top: 130px; padding-bottom: 36px; gap: 1.5rem; }
  .hero h1 { font-size: clamp(3.8rem, 18vw, 5.4rem); }
  .hero-lead { font-size: 1.45rem; }
  .hero-body { font-size: 0.98rem; }
  .hero-actions { display: grid; }
  .button { width: 100%; }
  .hero-proof { grid-template-columns: 1fr; }
  .hero-proof div { min-height: 66px; display: grid; grid-template-columns: 105px 1fr; border-right: 0; border-bottom: 1px solid var(--line); }
  .hero-proof div:last-child { border-bottom: 0; }
  .trust-grid { grid-template-columns: 1fr; }
  .trust-grid p { min-height: 76px; border-right: 0; border-bottom: 1px solid rgba(8,11,11,0.2); }
  .section { padding: 78px 0; }
  .section h2 { font-size: 2.65rem; }
  .section-intro { margin-bottom: 2rem; }
  .feature-grid { grid-template-columns: 1fr; }
  .feature-wide { grid-column: span 1; grid-template-columns: 42px 1fr; }
  .feature { min-height: 230px; padding: 1.4rem; }
  .channel-visual { gap: 0.35rem; overflow: hidden; }
  .channel-visual span { font-size: 0.62rem; }
  .operations-photo, .operations-photo img { min-height: 430px; }
  .operations-grid { gap: 2.5rem; }
  .comparison-head > *, .comparison-row > * { padding: 1rem 0.8rem; }
  .comparison-row { align-items: start; font-size: 0.88rem; }
  .comparison-row strong { font-size: 0.9rem; }
  .resilience-grid, .steps { grid-template-columns: 1fr; }
  .setup-header { align-items: flex-start; }
  .free-stamp { width: 112px; }
  .free-stamp strong { font-size: 1.35rem; }
  .steps li { min-height: 200px; }
  .steps h3 { margin-top: 2.2rem; }
  .pricing-layout { gap: 3rem; }
  .price-card { padding: 1.25rem; box-shadow: 9px 9px 0 var(--ink); }
  .price-card-top { flex-direction: column; align-items: flex-start; }
  .price strong { font-size: 3.2rem; }
  .price-card ul { grid-template-columns: 1fr; }
  .extra-pack { flex-direction: column; }
  .extra-pack strong { text-align: left; }
  .contact-choice-grid { grid-template-columns: 1fr; }
  .contact-number { min-height: 66px; }
  .final-cta { padding: 70px 0; }
  .final-cta h2 { font-size: 3rem; }
  .footer-inner { grid-template-columns: 1fr; justify-items: start; }
  .footer-inner p { text-align: left; }
}
