:root {
  --ink: #10251b;
  --green: #006348;
  --bright: #77c942;
  --mint: #e7f5e4;
  --cream: #f7f8f2;
  --line: #10251b1f;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--cream);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  margin: 0;
  font-family: "Noto Sans CJK SC", "Noto Sans CJK", "PingFang SC", "Hiragino Sans GB",
    "Microsoft YaHei", system-ui, sans-serif;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

.phone-screen img,
.plant-orbit img,
.mascot-bubble img,
.photo-card img,
.growth-photo img,
.download-mascot img {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
}

.shell {
  width: min(1180px, 100% - 48px);
  margin-inline: auto;
}

/* ── Nav & Brand ── */

.nav {
  z-index: 20;
  justify-content: space-between;
  align-items: center;
  height: 84px;
  display: flex;
  position: relative;
}

.brand {
  align-items: center;
  gap: 9px;
  font-weight: 800;
  display: flex;
}

.brand > span {
  font-size: 22px;
}

.brand small {
  letter-spacing: 0.2em;
  color: #5e6e65;
  margin-top: 4px;
  margin-left: -3px;
  font-size: 10px;
}

.brand-icon {
  width: 34px;
  height: 34px;
  border-radius: 12px;
  flex-shrink: 0;
  object-fit: cover;
}

.nav-links {
  color: #46564c;
  gap: 34px;
  font-size: 14px;
  display: flex;
}

.nav-links a:hover {
  color: var(--green);
}

.nav-cta,
.primary-button {
  background: var(--ink);
  color: #fff;
  border-radius: 999px;
  align-items: center;
  gap: 18px;
  padding: 13px 20px;
  font-size: 14px;
  font-weight: 700;
  display: inline-flex;
}

.nav-cta span,
.primary-button span {
  background: var(--bright);
  width: 25px;
  height: 25px;
  color: var(--ink);
  border-radius: 50%;
  place-items: center;
  display: grid;
}

/* ── Hero ── */

.hero {
  background: linear-gradient(135deg, #f6f8ef 0%, #edf5df 55%, #dcedc6 100%);
  border-radius: 0 0 52px 52px;
  min-height: 790px;
  position: relative;
  overflow: hidden;
}

.hero-grid {
  z-index: 3;
  grid-template-columns: 48% 52%;
  align-items: center;
  min-height: 680px;
  display: grid;
  position: relative;
}

.eyebrow,
.section-kicker {
  letter-spacing: 0.17em;
  color: var(--green);
  font-size: 12px;
  font-weight: 800;
}

.eyebrow span {
  color: var(--bright);
  font-size: 10px;
}

.hero-copy h1 {
  letter-spacing: -0.06em;
  margin: 24px 0 26px;
  font-size: 64px;
  font-weight: 800;
  line-height: 1.12;
}

.hero-copy h1 span {
  color: var(--green);
  position: relative;
}

.hero-copy h1 span::after {
  content: "";
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='12'%3E%3Cpath d='M2 8c60-9 140 2 236-5' stroke='%2377c942' stroke-width='5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E") 50% / 100% 100% no-repeat;
  height: 11px;
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
}

.hero-copy > p {
  color: #526056;
  max-width: 540px;
  font-size: 17px;
  line-height: 1.9;
}

.hero-actions {
  align-items: center;
  gap: 26px;
  margin-top: 34px;
  display: flex;
}

.primary-button {
  background: linear-gradient(90deg, #006348, #14843d);
  padding: 15px 18px 15px 25px;
}

.hero-tags {
  color: #526056;
  gap: 22px;
  margin-top: 38px;
  font-size: 13px;
  display: flex;
}

.hero-tags span:first-letter {
  color: var(--green);
}

.hero-visual {
  height: 650px;
  position: relative;
}

.plant-orbit {
  border-radius: 48% 52% 44% 56% / 52% 41% 59% 48%;
  width: 570px;
  height: 600px;
  position: absolute;
  top: 15px;
  right: -105px;
  overflow: hidden;
  transform: rotate(2deg);
  box-shadow: 0 40px 90px #1c4f2a2e;
}

.plant-orbit img {
  object-fit: cover;
}

.phone {
  z-index: 4;
  background: #121714;
  border-radius: 44px;
  width: 275px;
  height: 585px;
  padding: 10px;
  position: relative;
  box-shadow: 0 28px 80px #071f124d;
}

.phone-screen {
  background: #fff;
  border-radius: 35px;
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.phone-screen img {
  object-fit: cover;
}

.phone-speaker {
  z-index: 3;
  background: #121714;
  border-radius: 20px;
  width: 72px;
  height: 19px;
  position: absolute;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
}

.phone-xiaomi {
  border-radius: 31px;
  padding: 7px;
}

.phone-xiaomi .phone-screen {
  border-radius: 25px;
}

.phone-xiaomi .phone-speaker {
  border-radius: 50%;
  width: 8px;
  height: 8px;
  top: 15px;
  left: auto;
  right: 25px;
}

.hero-phone {
  position: absolute;
  top: 40px;
  left: 54px;
  transform: rotate(-4deg);
}

.floating-card {
  z-index: 6;
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  background: #ffffffed;
  border: 1px solid #ffffffb3;
  border-radius: 17px;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  display: flex;
  position: absolute;
  box-shadow: 0 18px 45px #1a402729;
}

.floating-card .mini-icon {
  width: 34px;
  height: 34px;
  color: var(--green);
  background: #e9f6de;
  border-radius: 12px;
  place-items: center;
  display: grid;
}

.floating-card small,
.species-tag small {
  color: #849087;
  font-size: 10px;
  display: block;
}

.floating-card strong {
  font-size: 13px;
}

.floating-card b {
  color: #2e863a;
  background: #e7f5e4;
  border-radius: 20px;
  margin-left: 8px;
  padding: 5px 8px;
  font-size: 10px;
}

.health-card {
  top: 150px;
  right: 3px;
}

.task-card {
  bottom: 120px;
  right: -14px;
}

.mascot-bubble {
  z-index: 5;
  background: #fff;
  border-radius: 50%;
  width: 115px;
  height: 115px;
  position: absolute;
  bottom: 35px;
  left: -40px;
  overflow: hidden;
  box-shadow: 0 16px 45px #0f391f2e;
}

.mascot-bubble img {
  object-fit: contain;
}

.hero-glow {
  filter: blur(20px);
  border-radius: 50%;
  position: absolute;
}

.hero-glow-a {
  background: #b2e26359;
  width: 450px;
  height: 450px;
  top: 14%;
  right: 13%;
}

.hero-glow-b {
  background: #ffffffb3;
  width: 250px;
  height: 250px;
  bottom: -5%;
  left: -5%;
}

.hero-leaf {
  opacity: 0.28;
  background: #accf81;
  border-radius: 100% 0;
  position: absolute;
}

.leaf-a {
  width: 160px;
  height: 80px;
  top: 180px;
  left: -40px;
  transform: rotate(34deg);
}

.leaf-b {
  width: 130px;
  height: 65px;
  bottom: 25px;
  right: 15px;
  transform: rotate(-140deg);
}

/* ── Section headings ── */

.section-heading {
  max-width: 720px;
  margin-bottom: 46px;
}

.section-heading h2,
.story-copy h2,
.growth-heading h2,
.download-copy h2 {
  letter-spacing: -0.05em;
  margin: 18px 0;
  font-size: 49px;
  line-height: 1.25;
  max-width: none;
  text-wrap: pretty;
}

.section-heading p,
.story-copy > p,
.growth-heading > p {
  color: #68756c;
  max-width: min(42em, 100%);
  font-size: 16px;
  line-height: 1.8;
  white-space: normal;
  overflow-wrap: anywhere;
  word-break: normal;
  text-wrap: pretty;
}

/* ── Features ── */

.feature-list {
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  display: grid;
}

.feature-card {
  background: #fff;
  border-radius: 27px;
  min-height: 310px;
  padding: 28px;
  transition: all 0.3s;
  box-shadow: 0 8px 26px #1f3b280d;
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 35px #1f3b281a;
}

.feature-top {
  color: #799084;
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.feature-top span {
  font-size: 23px;
  font-weight: 800;
  color: var(--bright);
  letter-spacing: 0.05em;
}

.feature-icon {
  background: var(--mint);
  width: 58px;
  height: 58px;
  color: var(--green);
  border-radius: 18px;
  place-items: center;
  font-style: normal;
  display: grid;
}

.feature-icon svg {
  width: 28px;
  height: 28px;
}

.feature-card h3 {
  margin: 45px 0 13px;
  font-size: 22px;
}

.feature-card p {
  color: #66736a;
  font-size: 14px;
  line-height: 1.8;
}

.feature-card a {
  color: var(--green);
  margin-top: 22px;
  font-size: 13px;
  font-weight: 700;
  display: inline-block;
}

.feature-section {
  padding-top: 110px;
  padding-bottom: 140px;
}

/* ── Story sections ── */

.story {
  padding: 130px 0;
  overflow: hidden;
}

.story-identify {
  background: #eaf3de;
}

.story-grid {
  grid-template-columns: 56% 44%;
  align-items: center;
  gap: 80px;
  display: grid;
}

.story-media {
  height: 650px;
  position: relative;
}

.photo-card {
  border-radius: 180px 32px 32px;
  width: 500px;
  height: 600px;
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
  box-shadow: 0 30px 70px #2f562e29;
}

.photo-card img {
  object-fit: cover;
}

.story-phone {
  width: 240px;
  height: 510px;
  position: absolute;
  bottom: -15px;
  right: 0;
  transform: rotate(4deg);
}

.species-tag {
  z-index: 5;
  background: #fff;
  border-radius: 20px;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  display: flex;
  position: absolute;
  bottom: 18px;
  left: 20px;
  box-shadow: 0 18px 40px #27482b2b;
}

.species-tag > span {
  width: 36px;
  height: 36px;
  color: var(--green);
  background: #e7f4dc;
  border-radius: 12px;
  place-items: center;
  display: grid;
}

.species-tag strong,
.species-tag em {
  display: block;
}

.species-tag em {
  color: #89938c;
  font-size: 10px;
  font-style: normal;
}

.step {
  letter-spacing: 0.2em;
  color: var(--green);
  font-size: 17px;
  font-weight: 800;
}

.story-copy h2 {
  font-size: 50px;
}

.story-copy ul {
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
}

.story-copy li {
  border-bottom: 1px solid #1a36241f;
  gap: 15px;
  padding: 16px 0;
  display: flex;
}

.story-copy li > span {
  background: #bde78b;
  border-radius: 50%;
  place-items: center;
  width: 28px;
  height: 28px;
  font-size: 11px;
  display: grid;
}

.story-copy li strong,
.story-copy li small {
  display: block;
}

.story-copy li small {
  color: #778179;
  margin-top: 3px;
}

.story-care {
  background: #f8f9f4;
}

.reverse {
  grid-template-columns: 43% 57%;
  gap: 100px;
}

.care-pills {
  flex-wrap: wrap;
  gap: 9px;
  margin: 28px 0;
  display: flex;
}

.care-pills span {
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 999px;
  padding: 10px 13px;
  font-size: 12px;
}

.story-copy blockquote {
  border-left: 3px solid var(--bright);
  background: #eef5e8;
  border-radius: 0 16px 16px 0;
  margin: 32px 0 0;
  padding: 23px;
  font-size: 16px;
  font-weight: 700;
}

.story-copy blockquote small {
  color: #6c786f;
  margin-top: 8px;
  font-weight: 400;
  line-height: 1.6;
  display: block;
}

.care-stage {
  height: 650px;
  position: relative;
}

.care-phone {
  width: 270px;
  height: 575px;
  position: absolute;
  top: 0;
  right: 30px;
  transform: rotate(3deg);
}

.calendar-card {
  z-index: 5;
  background: #fff;
  border-radius: 24px;
  width: 420px;
  padding: 23px;
  position: absolute;
  bottom: 40px;
  left: 0;
  box-shadow: 0 23px 55px #1c372524;
}

.calendar-head {
  justify-content: space-between;
  display: flex;
}

.calendar-head span {
  color: #7d8a81;
  font-size: 12px;
}

.calendar-days {
  grid-template-columns: repeat(7, 1fr);
  gap: 6px;
  margin: 17px 0;
  display: grid;
}

.calendar-days i {
  text-align: center;
  color: #78837c;
  border-radius: 10px;
  padding: 7px 0;
  font-size: 10px;
  font-style: normal;
}

.calendar-days small {
  margin-top: 5px;
  font-size: 12px;
  display: block;
}

.calendar-days .active {
  background: var(--green);
  color: #fff;
}

.calendar-task {
  border-top: 1px solid var(--line);
  align-items: center;
  gap: 12px;
  padding-top: 14px;
  display: flex;
}

.calendar-task > span {
  width: 37px;
  height: 37px;
  color: var(--green);
  background: #e8f5e2;
  border-radius: 12px;
  place-items: center;
  display: grid;
}

.calendar-task b,
.calendar-task small {
  font-size: 12px;
  display: block;
}

.calendar-task small {
  color: #849087;
  margin-top: 3px;
}

.calendar-task em {
  color: #3a8b43;
  background: #edf7e8;
  border-radius: 20px;
  margin-left: auto;
  padding: 5px 8px;
  font-size: 10px;
  font-style: normal;
}

/* ── Growth ── */

.growth-section {
  color: #fff;
  background: #0d3327;
  padding: 140px 0;
  position: relative;
  overflow: hidden;
}

.growth-section::before {
  content: "";
  filter: blur(100px);
  opacity: 0.5;
  background: #276444;
  border-radius: 50%;
  width: 650px;
  height: 650px;
  position: absolute;
  top: -220px;
  right: -150px;
}

.growth-heading {
  z-index: 2;
  max-width: 650px;
  position: relative;
}

.growth-heading .step {
  color: #a9dd6a;
}

.growth-heading > p {
  color: #b8c9c0;
}

.growth-canvas {
  height: 650px;
  margin-top: 60px;
  position: relative;
}

.growth-photo {
  border-radius: 35px;
  width: 72%;
  height: 620px;
  position: absolute;
  top: 0;
  right: 0;
  overflow: hidden;
}

.growth-photo::after {
  content: "";
  background: linear-gradient(90deg, #0d3327bf, #0000 50%);
  position: absolute;
  inset: 0;
}

.growth-photo img {
  object-fit: cover;
}

.growth-phone {
  z-index: 4;
  width: 250px;
  height: 530px;
  position: absolute;
  bottom: 10px;
  left: 0;
  transform: rotate(-3deg);
  box-shadow: 0 28px 80px #00000066;
}

/* ── Download ── */

.download {
  background: #f7f8f2;
  padding: 120px 0 55px;
}

.download-card {
  background: linear-gradient(120deg, #dcefc3, #b8e789);
  border-radius: 42px;
  align-items: center;
  min-height: 520px;
  padding: 65px 75px;
  display: flex;
  position: relative;
  overflow: hidden;
}

.download-card::before {
  content: "";
  border: 1px solid #00634829;
  border-radius: 50%;
  width: 470px;
  height: 470px;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translate(25%, -50%);
  box-shadow: 0 0 0 70px #ffffff17, 0 0 0 140px #ffffff0f;
}

.download-copy {
  z-index: 3;
  width: 57%;
  position: relative;
}

.download-copy h2 {
  font-size: 61px;
}

.download-copy p {
  font-size: 18px;
}

.download-actions {
  gap: 11px;
  margin: 30px 0 18px;
  display: flex;
}

.download-actions a,
.download-actions button {
  background: var(--ink);
  color: #fff;
  cursor: pointer;
  border: 0;
  border-radius: 16px;
  padding: 0 19px;
  min-height: 52px;
  font-weight: 700;
  font-size: 15px;
  line-height: 1.2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  text-decoration: none;
  box-sizing: border-box;
  -webkit-appearance: none;
  appearance: none;
}

.download-actions button {
  color: var(--ink);
  background: #fff9;
}

.download-copy > em {
  color: #58705e;
  font-size: 10px;
  font-style: normal;
}

.download-mascot {
  z-index: 2;
  width: 420px;
  height: 420px;
  position: absolute;
  bottom: -10px;
  right: 30px;
}

.download-mascot img {
  object-fit: contain;
}

.mascot-halo {
  filter: blur(2px);
  background: #ffffffb3;
  border-radius: 50%;
  width: 320px;
  height: 320px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* ── Footer ── */

.footer {
  align-items: center;
  gap: 38px;
  min-height: 130px;
  display: flex;
}

.footer > p {
  color: #7b887f;
  font-size: 12px;
}

.footer > div {
  color: #68766c;
  gap: 25px;
  margin-left: auto;
  font-size: 12px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.footer a.beian {
  color: inherit;
  text-decoration: none;
}

.footer a.beian:hover {
  text-decoration: underline;
}

/* ── iOS modal ── */

.modal-overlay {
  z-index: 100;
  background: #10251b66;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  place-items: center;
  padding: 24px;
  display: grid;
  position: fixed;
  inset: 0;
}

.modal-overlay[hidden] {
  display: none;
}

.modal {
  background: #fff;
  border-radius: 24px;
  width: min(440px, 100%);
  padding: 36px 32px 32px;
  position: relative;
  box-shadow: 0 24px 60px #10251b33;
}

.modal-close {
  color: #849087;
  cursor: pointer;
  background: none;
  border: 0;
  font-size: 28px;
  line-height: 1;
  position: absolute;
  top: 16px;
  right: 20px;
}

.modal h3 {
  margin: 0 0 8px;
  font-size: 22px;
}

.modal-desc {
  color: #68756c;
  margin: 0 0 24px;
  font-size: 14px;
  line-height: 1.6;
}

.modal label {
  margin-bottom: 16px;
  display: block;
}

.modal label span {
  color: #46564c;
  margin-bottom: 6px;
  font-size: 13px;
  font-weight: 600;
  display: block;
}

.modal label em {
  color: var(--green);
  font-style: normal;
}

.modal input {
  border: 1px solid var(--line);
  border-radius: 12px;
  width: 100%;
  padding: 12px 14px;
  font-size: 15px;
}

.modal input:focus {
  border-color: var(--green);
  outline: 2px solid #00634833;
}

.form-error {
  color: #c0392b;
  margin: 0 0 12px;
  font-size: 13px;
}

.modal-submit {
  background: var(--green);
  color: #fff;
  cursor: pointer;
  border: 0;
  border-radius: 14px;
  width: 100%;
  margin-top: 8px;
  padding: 14px;
  font-size: 15px;
  font-weight: 700;
}

.modal-submit:disabled {
  opacity: 0.6;
  cursor: wait;
}

.modal-success p {
  color: #46564c;
  margin: 0 0 20px;
  font-size: 15px;
  line-height: 1.7;
}

/* ── Desktop download band (901px+) ── */

@media (min-width: 901px) {
  .download {
    background: linear-gradient(180deg, #0d3327 0%, #0d3327 80px, #dcefc3 80px, #b8e789 100%);
    padding: 60px 0 0;
  }

  .download-card {
    border-radius: 24px 24px 0 0;
    width: 100%;
    min-height: 460px;
    padding: 55px 65px 65px;
  }

  .download-card::before {
    width: 520px;
    height: 520px;
  }
}

/* ── Tablet ── */

@media (max-width: 900px) {
  .nav-links {
    display: none;
  }

  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 1180px;
  }

  .hero-copy {
    padding-top: 70px;
  }

  .hero-copy h1 {
    font-size: 51px;
  }

  .hero-visual {
    height: 670px;
    margin-top: 10px;
  }

  .plant-orbit {
    right: -150px;
  }

  .hero-phone {
    left: 20%;
  }

  .feature-list {
    grid-template-columns: 1fr;
  }

  .story-grid,
  .reverse {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .story-media,
  .care-stage {
    order: 2;
  }

  .growth-photo {
    width: 100%;
  }

  .growth-phone {
    width: 210px;
    height: 445px;
    bottom: 5px;
    left: 10px;
  }

  .download-copy {
    width: 70%;
  }

  .download-mascot {
    opacity: 0.65;
    right: -90px;
  }

  .footer > p {
    display: none;
  }
}

/* ── Mobile ── */

@media (max-width: 620px) {
  .shell {
    width: min(100% - 28px, 1180px);
  }

  .nav {
    height: 70px;
  }

  .nav-cta {
    padding: 10px;
    font-size: 0;
  }

  .nav-cta span {
    font-size: 14px;
  }

  .hero {
    border-radius: 0 0 30px 30px;
    min-height: 1050px;
  }

  .hero-grid {
    min-height: auto;
  }

  .hero-copy {
    padding-top: 60px;
  }

  .hero-copy h1 {
    font-size: 41px;
  }

  .hero-copy > p {
    font-size: 15px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-tags {
    gap: 9px;
    font-size: 10px;
  }

  .hero-visual {
    height: 570px;
    margin-top: 25px;
  }

  .plant-orbit {
    width: 430px;
    height: 500px;
    right: -165px;
  }

  .phone {
    width: 220px;
    height: 470px;
  }

  .hero-phone {
    top: 35px;
    left: 8%;
  }

  .health-card {
    top: 115px;
    right: -5px;
  }

  .task-card {
    bottom: 90px;
    right: -20px;
  }

  .mascot-bubble {
    width: 90px;
    height: 90px;
    bottom: 25px;
    left: 0;
  }

  .section-heading h2,
  .story-copy h2,
  .growth-heading h2 {
    font-size: 37px;
  }

  .feature-section {
    padding-top: 80px;
    padding-bottom: 90px;
  }

  .story {
    padding: 90px 0;
  }

  .story-media {
    height: 540px;
  }

  .photo-card {
    border-radius: 110px 25px 25px;
    width: 82%;
    height: 500px;
  }

  .story-phone {
    width: 190px;
    height: 400px;
  }

  .species-tag {
    left: 5px;
  }

  .care-stage {
    height: 550px;
  }

  .care-phone {
    width: 215px;
    height: 460px;
    right: 0;
  }

  .calendar-card {
    width: 92%;
    bottom: 5px;
    left: 0;
  }

  .growth-section {
    padding: 90px 0;
  }

  .growth-canvas {
    height: 520px;
  }

  .growth-photo {
    height: 480px;
  }

  .growth-phone {
    width: 175px;
    height: 370px;
    bottom: 0;
    left: 5px;
  }

  .download {
    padding-top: 70px;
    background: #f7f8f2;
  }

  .download-card {
    align-items: flex-start;
    min-height: 650px;
    padding: 45px 28px;
    border-radius: 42px;
  }

  .download-copy {
    width: 100%;
  }

  .download-copy h2 {
    font-size: 49px;
  }

  .download-actions {
    flex-direction: column;
    width: 75%;
  }

  .download-actions a,
  .download-actions button {
    width: 100%;
  }

  .download-mascot {
    width: 310px;
    height: 310px;
    right: -30px;
  }

  .footer {
    flex-wrap: wrap;
    padding: 30px 0;
  }

  .footer > div {
    justify-content: space-between;
    width: 100%;
    margin: 0;
  }
}
