:root {
  --paper: #fdfbf7;
  --ink: #2d2d2d;
  --muted: #e5e0d8;
  --accent: #ff4d4d;
  --pen: #2d5da1;
  --postit: #fff9c4;
  --white: #ffffff;
  --shadow: 4px 4px 0 0 var(--ink);
  --shadow-lg: 8px 8px 0 0 var(--ink);
  --shadow-soft: 3px 3px 0 0 rgba(45, 45, 45, 0.12);
  --wobbly: 255px 15px 225px 15px / 15px 225px 15px 255px;
  --wobbly-md: 30px 8px 25px 10px / 10px 25px 8px 30px;
  --wobbly-sm: 18px 6px 16px 5px / 6px 16px 5px 18px;
  --font-marker: 'Kalam', cursive;
  --font-h: 'Shantell Sans', cursive;
  --font-b: 'Shantell Sans', cursive;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }

body {
  font-family: var(--font-b);
  font-size: 18px;
  line-height: 1.65;
  font-weight: 400;
  color: var(--ink);
  background: var(--paper);
  background-image: radial-gradient(var(--muted) 1px, transparent 1px);
  background-size: 24px 24px;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.container { width: min(1024px, 92vw); margin: 0 auto; }

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--paper);
  background-image: radial-gradient(var(--muted) 1px, transparent 1px);
  background-size: 24px 24px;
  border-bottom: 3px dashed var(--ink);
  padding: 12px 0;
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-family: var(--font-marker);
  font-size: 1.75rem;
  font-weight: 700;
  transform: rotate(-1deg);
}

.logo span { color: var(--accent); }

.nav { display: flex; align-items: center; gap: 24px; }

.nav__link {
  font-size: 1.05rem;
  position: relative;
  transition: color 0.15s;
}

.nav__link:hover { color: var(--pen); }

.nav__link:hover::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 3px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 6'%3E%3Cpath d='M0 4 Q25 0 50 4 T100 3' stroke='%232d5da1' stroke-width='2' fill='none'/%3E%3C/svg%3E") repeat-x;
  background-size: 40px 6px;
}

.nav__cta {
  font-family: var(--font-b);
  font-size: 1.05rem;
  background: var(--white);
  color: var(--ink);
  border: 3px solid var(--ink);
  border-radius: var(--wobbly-sm);
  padding: 8px 20px;
  box-shadow: var(--shadow);
  cursor: pointer;
  transition: transform 0.1s, box-shadow 0.1s, background 0.15s, color 0.15s;
}

.nav__cta:hover {
  background: var(--accent);
  color: white;
  transform: translate(2px, 2px);
  box-shadow: 2px 2px 0 0 var(--ink);
}

.nav__cta:active {
  transform: translate(4px, 4px);
  box-shadow: none;
}

.burger {
  display: none;
  background: var(--postit);
  border: 3px solid var(--ink);
  border-radius: var(--wobbly-sm);
  padding: 10px;
  cursor: pointer;
  box-shadow: var(--shadow);
}

.burger span {
  display: block;
  width: 22px;
  height: 3px;
  background: var(--ink);
  margin: 4px 0;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 12px 28px;
  font-family: var(--font-h);
  font-size: 1.05rem;
  font-weight: 600;
  border: 3px solid var(--ink);
  border-radius: var(--wobbly-sm);
  cursor: pointer;
  box-shadow: var(--shadow);
  transition: transform 0.1s, box-shadow 0.1s, background 0.15s, color 0.15s;
}

.btn--primary {
  background: var(--white);
  color: var(--ink);
}

.btn--primary:hover {
  background: var(--accent);
  color: white;
  transform: translate(2px, 2px);
  box-shadow: 2px 2px 0 0 var(--ink);
}

.btn--primary:active {
  transform: translate(4px, 4px);
  box-shadow: none;
}

.btn--secondary {
  background: var(--muted);
  color: var(--ink);
}

.btn--secondary:hover {
  background: var(--pen);
  color: white;
  transform: translate(2px, 2px);
  box-shadow: 2px 2px 0 0 var(--ink);
}

.btn--secondary:active {
  transform: translate(4px, 4px);
  box-shadow: none;
}

.btn--postit {
  background: var(--postit);
}

/* Sketch card */
.sketch-card {
  position: relative;
  background: var(--white);
  border: 3px solid var(--ink);
  border-radius: var(--wobbly-md);
  padding: 28px;
  box-shadow: var(--shadow-soft);
  transition: transform 0.1s;
}

.sketch-card:hover { transform: rotate(-1deg); }

.sketch-card--postit {
  background: var(--postit);
}

.sketch-card--tape::before {
  content: '';
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%) rotate(-2deg);
  width: 80px;
  height: 28px;
  background: rgba(229, 224, 216, 0.85);
  border: 1px dashed rgba(45, 45, 45, 0.3);
}

.sketch-card--tack::after {
  content: '';
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 18px;
  height: 18px;
  background: var(--accent);
  border: 2px solid var(--ink);
  border-radius: 50%;
  box-shadow: 1px 2px 0 rgba(0,0,0,0.2);
}

/* Hero */
.hero {
  padding: 56px 0 72px;
  position: relative;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.hero__tag {
  display: inline-block;
  font-family: var(--font-h);
  font-size: 0.9rem;
  font-weight: 600;
  background: var(--postit);
  border: 2px dashed var(--ink);
  padding: 6px 14px;
  border-radius: var(--wobbly-sm);
  transform: rotate(-2deg);
  margin-bottom: 16px;
}

.hero__title {
  font-family: var(--font-marker);
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 16px;
  transform: rotate(-0.5deg);
}

.hero__title em {
  font-style: normal;
  color: var(--accent);
  display: inline-block;
  transform: rotate(2deg);
}

.hero__sub {
  font-size: 1.15rem;
  margin-bottom: 28px;
  max-width: 440px;
}

.hero__arrow {
  display: none;
  position: absolute;
  left: 42%;
  bottom: 28%;
  width: 80px;
  height: 60px;
}

.hero__visual {
  position: relative;
  transform: rotate(2deg);
}

.hero__frame {
  border: 4px solid var(--ink);
  border-radius: var(--wobbly);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: white;
  position: relative;
}

.hero__frame img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
}

.hero__corner {
  position: absolute;
  width: 24px;
  height: 24px;
  border: 3px solid var(--ink);
}

.hero__corner--tl { top: 8px; left: 8px; border-right: none; border-bottom: none; }
.hero__corner--tr { top: 8px; right: 8px; border-left: none; border-bottom: none; }
.hero__corner--bl { bottom: 8px; left: 8px; border-right: none; border-top: none; }
.hero__corner--br { bottom: 8px; right: 8px; border-left: none; border-top: none; }

.hero__scribble {
  position: absolute;
  top: -20px;
  right: -16px;
  font-family: var(--font-h);
  font-size: 1rem;
  font-weight: 600;
  background: var(--postit);
  border: 2px solid var(--ink);
  border-radius: var(--wobbly-sm);
  padding: 8px 14px;
  transform: rotate(6deg);
  box-shadow: var(--shadow);
}

.hero__dot {
  position: absolute;
  bottom: 20px;
  left: -24px;
  width: 48px;
  height: 48px;
  border: 3px dashed var(--pen);
  border-radius: 50%;
  animation: bounce 3s ease-in-out infinite;
}

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

/* Section */
.section { padding: 72px 0; }

.section__tag {
  display: inline-block;
  font-family: var(--font-h);
  font-size: 0.95rem;
  font-weight: 600;
  background: var(--postit);
  border: 2px solid var(--ink);
  padding: 4px 14px;
  border-radius: var(--wobbly-sm);
  transform: rotate(-1deg);
  margin-bottom: 12px;
}

.section__title {
  font-family: var(--font-h);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 700;
  margin-bottom: 36px;
  line-height: 1.2;
}

.section__title .underline {
  text-decoration: underline;
  text-decoration-style: wavy;
  text-decoration-color: var(--accent);
  text-underline-offset: 4px;
}

/* Results sticky notes */
.notes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.note {
  background: var(--white);
  border: 3px solid var(--ink);
  border-radius: var(--wobbly-md);
  padding: 22px;
  box-shadow: var(--shadow);
  transition: transform 0.1s;
  position: relative;
}

.note:nth-child(odd) { transform: rotate(-1deg); }
.note:nth-child(even) { transform: rotate(1deg); background: var(--postit); }

.note:hover {
  transform: rotate(0deg) scale(1.02);
  z-index: 2;
}

.note__icon {
  font-size: 1.5rem;
  margin-bottom: 8px;
}

.note__text { font-size: 1rem; font-weight: 500; }

/* FAQ */
.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.faq {
  border: 3px solid var(--ink);
  border-radius: var(--wobbly-md);
  overflow: hidden;
  background: white;
  box-shadow: var(--shadow-soft);
}

.faq:nth-child(odd) { transform: rotate(-0.5deg); }
.faq:nth-child(even) { transform: rotate(0.5deg); }

.faq__head {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 22px;
  background: var(--postit);
  border: none;
  border-bottom: 2px dashed var(--ink);
  cursor: pointer;
  font-family: var(--font-h);
  font-size: 1.05rem;
  font-weight: 600;
  text-align: left;
  color: var(--ink);
}

.faq__plus {
  font-size: 1.4rem;
  font-weight: 700;
  transition: transform 0.2s;
}

.faq.open .faq__plus { transform: rotate(45deg); }

.faq__body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq.open .faq__body { max-height: 360px; }

.faq__list {
  padding: 16px 22px 20px;
  list-style: none;
}

.faq__list li {
  padding-left: 22px;
  position: relative;
  margin-bottom: 8px;
  font-size: 0.98rem;
  font-weight: 400;
}

.faq__list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--pen);
  font-weight: 700;
}

/* About */
.about-row {
  display: grid;
  grid-template-columns: minmax(320px, 380px) 1fr;
  gap: 48px;
  align-items: start;
}

@media (min-width: 1100px) {
  .about-row {
    grid-template-columns: minmax(420px, 500px) 1fr;
    gap: 56px;
  }
}

.about-photo {
  transform: rotate(-2deg);
}

.about-photo img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: center top;
  border: 4px solid var(--ink);
  border-radius: var(--wobbly-md);
  box-shadow: var(--shadow-lg);
}

.about-copy p { margin-bottom: 14px; }

.check-list {
  list-style: none;
  margin: 18px 0;
}

.check-list li {
  padding: 8px 0 8px 28px;
  position: relative;
  font-size: 1.05rem;
  border-bottom: 1px dashed var(--muted);
}

.check-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
  font-size: 1.2rem;
}

.quote-sketch {
  margin-top: 20px;
  padding: 20px 24px;
  background: var(--postit);
  border: 3px solid var(--ink);
  border-radius: var(--wobbly-md);
  box-shadow: var(--shadow);
  font-family: var(--font-h);
  font-size: 1.25rem;
  font-weight: 700;
  transform: rotate(1deg);
}

/* Pricing */
.pricing-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: stretch;
}

.price-sketch {
  background: white;
  border: 3px solid var(--ink);
  border-radius: var(--wobbly-md);
  padding: 28px 22px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  transition: transform 0.1s;
  position: relative;
}

.price-sketch:nth-child(1) { transform: rotate(-1deg); }
.price-sketch:nth-child(3) { transform: rotate(1deg); }

.price-sketch:hover { transform: rotate(0deg); }

.price-sketch--hit {
  background: var(--postit);
  transform: scale(1.05) rotate(0deg);
  z-index: 2;
  box-shadow: var(--shadow-lg);
}

.price-sketch--hit:hover { transform: scale(1.05); }

.price-sketch--hit::before {
  content: '';
  position: absolute;
  inset: -12px;
  border: 3px dashed var(--accent);
  border-radius: var(--wobbly);
  pointer-events: none;
}

.price-sketch__label {
  font-family: var(--font-h);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--accent);
  transform: rotate(-3deg);
  margin-bottom: 4px;
}

.price-sketch__name {
  font-family: var(--font-h);
  font-size: 1.45rem;
  font-weight: 700;
}

.price-sketch__amount {
  font-family: var(--font-h);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--pen);
  margin: 8px 0 16px;
}

.price-sketch__list {
  list-style: none;
  flex: 1;
  margin-bottom: 20px;
}

.price-sketch__list li {
  padding-left: 18px;
  position: relative;
  margin-bottom: 8px;
  font-size: 0.95rem;
}

.price-sketch__list li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-size: 1.2rem;
  line-height: 1;
}

.price-sketch .btn { width: 100%; }

.sketch-note {
  margin-top: 28px;
  text-align: center;
  padding: 16px 20px;
  border: 2px dashed var(--ink);
  border-radius: var(--wobbly-sm);
  font-size: 1.05rem;
}

/* Speech bubble chat */
.bubble-chat { max-width: 640px; margin: 0 auto; }

.bubble-q {
  display: inline-block;
  background: white;
  border: 3px solid var(--ink);
  border-radius: var(--wobbly-md);
  padding: 16px 22px;
  box-shadow: var(--shadow);
  font-family: var(--font-h);
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 16px;
  transform: rotate(-1deg);
}

.bubble-a {
  position: relative;
  background: var(--postit);
  border: 3px solid var(--ink);
  border-radius: var(--wobbly-md);
  padding: 22px 26px;
  margin-left: 32px;
  box-shadow: var(--shadow);
  transform: rotate(0.5deg);
}

.bubble-a::before {
  content: '';
  position: absolute;
  left: -16px;
  top: 24px;
  width: 0;
  height: 0;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  border-right: 16px solid var(--ink);
}

.bubble-a::after {
  content: '';
  position: absolute;
  left: -10px;
  top: 26px;
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-right: 14px solid var(--postit);
}

/* Group */
.group-sketch {
  text-align: center;
  padding: 48px 32px;
  background: white;
  border: 4px solid var(--ink);
  border-radius: var(--wobbly);
  box-shadow: var(--shadow-lg);
  transform: rotate(-0.5deg);
  position: relative;
}

.group-sketch::before {
  content: '';
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%) rotate(1deg);
  width: 100px;
  height: 32px;
  background: rgba(229, 224, 216, 0.9);
  border: 1px dashed rgba(45,45,45,0.25);
}

.group-sketch h2 {
  font-family: var(--font-h);
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.group-sketch p {
  max-width: 420px;
  margin: 0 auto 24px;
  font-size: 1.1rem;
}

/* Reviews */
.reviews-sketch {
  border: 3px solid var(--ink);
  border-radius: var(--wobbly-md);
  background: white;
  padding: 20px;
  box-shadow: var(--shadow);
  transform: rotate(0.5deg);
}

.reviews-track { display: flex; gap: 14px; transition: transform 0.5s ease; }
.review-slide { flex: 0 0 calc(33.333% - 10px); min-width: 0; }

.review-slide img {
  width: 100%;
  border: 3px solid var(--ink);
  border-radius: var(--wobbly-sm);
  box-shadow: var(--shadow-soft);
  transition: transform 0.1s;
}

.review-slide:hover img { transform: rotate(-1deg); }

.carousel-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 18px;
}

.carousel-btn {
  width: 44px;
  height: 44px;
  border: 3px solid var(--ink);
  border-radius: var(--wobbly-sm);
  background: var(--postit);
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  box-shadow: var(--shadow);
  transition: transform 0.1s, box-shadow 0.1s;
}

.carousel-btn:hover {
  transform: translate(2px, 2px);
  box-shadow: 2px 2px 0 0 var(--ink);
}

.carousel-dots { display: flex; gap: 8px; }

.carousel-dot {
  width: 12px;
  height: 12px;
  border: 2px solid var(--ink);
  border-radius: 50%;
  background: var(--muted);
  padding: 0;
  cursor: pointer;
}

.carousel-dot.active { background: var(--accent); }

/* Footer */
.footer {
  padding: 64px 0 32px;
  border-top: 3px dashed var(--ink);
  margin-top: 20px;
}

.footer__box {
  border: 3px solid var(--ink);
  border-radius: var(--wobbly-md);
  padding: 40px;
  background: white;
  box-shadow: var(--shadow-lg);
  transform: rotate(-0.5deg);
}

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

.footer h2 {
  font-family: var(--font-h);
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.footer p { margin-bottom: 20px; font-size: 1.1rem; }

.socials { display: flex; flex-wrap: wrap; gap: 10px; }

.social-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: var(--white);
  border: 3px solid var(--ink);
  border-radius: var(--wobbly-sm);
  box-shadow: var(--shadow);
  font-size: 1rem;
  transition: transform 0.1s, background 0.15s, color 0.15s;
}

.social-btn:hover {
  background: var(--pen);
  color: white;
  transform: translate(2px, 2px) rotate(-1deg);
  box-shadow: 2px 2px 0 0 var(--ink);
}

.social-btn svg { width: 18px; height: 18px; fill: currentColor; }

.footer__bottom {
  border-top: 2px dashed var(--muted);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 0.95rem;
}

.footer__bottom a {
  color: var(--pen);
  font-weight: 700;
}

.footer__bottom a:hover { text-decoration: line-through; }

/* Modal */
.modal {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s, visibility 0.2s;
}

.modal.open { opacity: 1; visibility: visible; }

.modal__bg {
  position: absolute;
  inset: 0;
  background: rgba(45, 45, 45, 0.4);
}

.modal__panel {
  position: relative;
  width: min(400px, 100%);
  background: var(--postit);
  border: 4px solid var(--ink);
  border-radius: var(--wobbly-md);
  padding: 32px 28px;
  box-shadow: var(--shadow-lg);
  transform: rotate(-1deg) scale(0.95);
  transition: transform 0.2s;
}

.modal.open .modal__panel { transform: rotate(-1deg) scale(1); }

.modal__close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  border: 3px solid var(--ink);
  border-radius: 50%;
  background: white;
  font-size: 1.3rem;
  cursor: pointer;
  line-height: 1;
  box-shadow: var(--shadow);
}

.modal h2 {
  font-family: var(--font-h);
  font-size: 1.5rem;
  font-weight: 700;
  margin: 8px 0;
}

.modal .sub { margin-bottom: 18px; font-size: 1.05rem; }

.modal__opts { display: flex; flex-direction: column; gap: 10px; }

.modal__opt {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  background: white;
  border: 3px solid var(--ink);
  border-radius: var(--wobbly-sm);
  box-shadow: var(--shadow);
  font-size: 1.05rem;
  transition: transform 0.1s, background 0.15s, color 0.15s;
}

.modal__opt:hover {
  background: var(--accent);
  color: white;
  transform: translate(2px, 2px);
  box-shadow: 2px 2px 0 0 var(--ink);
}

.modal__opt small { display: block; font-size: 0.85rem; opacity: 0.75; }

.modal__icon {
  width: 36px;
  height: 36px;
  border: 2px solid var(--ink);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
  background: var(--muted);
}

body.modal-open { overflow: hidden; }

.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
  background: var(--paper);
  background-image: radial-gradient(var(--muted) 1px, transparent 1px);
  background-size: 24px 24px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  border: 4px solid var(--ink);
}

.mobile-nav.open { display: flex; }
.mobile-nav .nav__link { font-size: 1.4rem; font-family: var(--font-h); font-weight: 700; }

.sketch-in {
  opacity: 0;
  transform: translateY(16px) rotate(1deg);
  transition: opacity 0.4s, transform 0.4s;
}

.sketch-in.visible {
  opacity: 1;
  transform: translateY(0) rotate(0deg);
}

@media (prefers-reduced-motion: reduce) {
  .hero__dot { animation: none; }
  *, .sketch-in { transition: none !important; animation: none !important; opacity: 1; transform: none; }
}

@media (max-width: 960px) {
  .hero__grid, .about-row, .footer__grid { grid-template-columns: 1fr; }
  .about-photo { max-width: 360px; margin: 0 auto; }
  .hero__visual { max-width: 300px; margin: 0 auto; order: -1; }
  .faq-grid { grid-template-columns: 1fr; }
  .pricing-row { grid-template-columns: 1fr; max-width: 360px; margin: 0 auto; }
  .price-sketch--hit { transform: none; }
  .price-sketch--hit::before { display: none; }
  .review-slide { flex: 0 0 calc(50% - 7px); }
  .nav { display: none; }
  .burger { display: block; }
  .hero__dot { display: none; }
}

@media (max-width: 600px) {
  .review-slide { flex: 0 0 100%; }
  .bubble-a { margin-left: 0; }
  .footer__bottom { flex-direction: column; text-align: center; }
  .footer__box { padding: 28px 20px; }
}

@media (min-width: 961px) {
  .hero__arrow { display: block; }
}
