/* ============================================================
   Team 3.0 — Landing Page Styles
   Lynxeye-reoriented: quiet, editorial, whitespace-led
   Black + teal only. Inter only. Light-weight headlines.
   ============================================================ */

:root {
  --teal:      #006778;
  --ink:       #0a0a0a;
  --bg:        #f9f8f7;       /* warm off-white */
  --bg-alt:    #f4f2f0;       /* slightly deeper warm neutral */
  --muted:     #807771;       /* warm gray for metadata / secondary */
  --muted-2:   #a8a09b;       /* softer still */
  --hairline:  #e4dfdb;       /* warm, used very sparingly */

  --maxw:      1160px;
  --gutter:    clamp(24px, 4vw, 56px);
  --section:   clamp(6rem, 11vw, 10rem);  /* whitespace carries structure */

  /* Aliases consumed by the production header/footer styles below */
  --line:      var(--hairline);
  --font-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
}

:root[data-density="airy"]     { --section: clamp(8rem, 14vw, 13rem); }
:root[data-density="compact"]  { --section: clamp(4rem, 7vw, 6rem); }

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  font-weight: 400;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.55;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  font-feature-settings: "ss01", "cv11";
  padding-top: 62px;       /* room for the fixed site header */
  overflow-x: hidden;
}

::selection { background: var(--ink); color: var(--bg); }

img, svg { display: block; max-width: 100%; }

a {
  color: var(--ink);
  text-decoration: none;
  transition: color .15s ease, opacity .15s ease;
}
a:hover { opacity: .65; }

/* Screen-reader-only utility */
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}

/* ---------- Container ---------- */

.t3-wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.t3-section {
  padding-top: var(--section);
  padding-bottom: var(--section);
  position: relative;
}

/* Alt-band: a few sections get the slightly deeper warm neutral */
.t3-section--band {
  background: var(--bg-alt);
}

/* Section index strip — a quiet top-aligned label inside a section */
.t3-sectionbar {
  max-width: var(--maxw);
  margin: 0 auto calc(var(--section) * 0.55) auto;
  padding: 1.1rem var(--gutter) 1.1rem var(--gutter);
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1.5rem;
  border-top: 1px solid var(--hairline);
  font-size: 12.5px;
  color: var(--muted);
  letter-spacing: 0.005em;
}
.t3-sectionbar__idx { color: var(--ink); }
.t3-sectionbar__rule {
  flex: 1;
  height: 1px;
  background: var(--hairline);
  align-self: center;
}

/* When a section is banded, pull its inner top-padding down so the bar
   sits flush with the band edge */
.t3-section--band { padding-top: 0; }
.t3-section--band .t3-sectionbar {
  border-top: 0;
  padding-top: calc(var(--section) * 0.55);
}

/* ---------- Typography ---------- */

/* Big sentence-case light-weight display */
.t3-display {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: clamp(3rem, 9vw, 6rem);
  line-height: 0.95;
  letter-spacing: -0.035em;
  margin: 0;
  text-wrap: balance;
}

.t3-h2 {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: clamp(2rem, 4.4vw, 3.5rem);
  line-height: 0.98;
  letter-spacing: -0.03em;
  margin: 0 0 1.75rem 0;
  text-wrap: balance;
}

.t3-h3 {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: clamp(1.25rem, 1.9vw, 1.55rem);
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin: 0 0 .75rem 0;
}

.t3-lede {
  font-size: clamp(1.1rem, 1.6vw, 1.3rem);
  line-height: 1.5;
  color: var(--ink);
  max-width: 42ch;
  text-wrap: pretty;
  font-weight: 400;
  letter-spacing: -0.005em;
}

.t3-body {
  max-width: 62ch;
  text-wrap: pretty;
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink);
}
.t3-body--muted { color: var(--muted); }

/* Quiet kicker replaces mono eyebrow */
.t3-kicker {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 13px;
  letter-spacing: 0.01em;
  color: var(--muted);
  margin: 0 0 2.25rem 0;
  display: block;
}
.t3-kicker--teal { color: var(--teal); }

.t3-meta {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 12.5px;
  color: var(--muted);
  letter-spacing: 0.005em;
}

/* ---------- Buttons ---------- */

.t3-btn {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  padding: 1.05rem 1.6rem;
  background: var(--ink);
  color: var(--bg);
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 15px;
  letter-spacing: -0.005em;
  border: 1px solid var(--ink);
  border-radius: 0;
  cursor: pointer;
  text-decoration: none;
  transition: background .18s ease, color .18s ease, border-color .18s ease;
}
.t3-btn:hover { background: var(--teal); border-color: var(--teal); color: var(--bg); opacity: 1; }
.t3-btn .arrow { display: inline-block; transition: transform .2s ease; }
.t3-btn:hover .arrow { transform: translateX(4px); }

.t3-btn--teal {
  background: var(--teal);
  border-color: var(--teal);
}
.t3-btn--teal:hover { background: var(--ink); border-color: var(--ink); }

.t3-link {
  color: var(--ink);
  font-size: 15px;
  font-weight: 400;
  letter-spacing: -0.005em;
  border-bottom: 1px solid var(--ink);
  padding-bottom: 3px;
  display: inline-flex;
  align-items: center;
  gap: .5rem;
}
.t3-link:hover { color: var(--teal); border-bottom-color: var(--teal); opacity: 1; }

/* ============================================================
   HERO — single-column, big, quiet
   ============================================================ */

.t3-hero {
  padding-top: clamp(7rem, 14vw, 12rem);
  padding-bottom: clamp(7rem, 14vw, 12rem);
  min-height: 92vh;
  display: flex;
  align-items: center;
}

.t3-hero__inner {
  max-width: 880px;
}

.t3-hero__sub {
  margin: 2.25rem 0 3rem 0;
  font-size: clamp(1.15rem, 1.7vw, 1.35rem);
  line-height: 1.45;
  color: var(--ink);
  max-width: 40ch;
  font-weight: 400;
  letter-spacing: -0.005em;
  text-wrap: pretty;
}

.t3-hero__cta {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

/* ============================================================
   PROBLEM — vertical narrative, labeled, no dividers
   ============================================================ */

.t3-problem__grid {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  gap: clamp(2rem, 7vw, 6rem);
  align-items: start;
}

.t3-pains {
  display: flex;
  flex-direction: column;
  gap: clamp(2.5rem, 4vw, 3.5rem);
}

.t3-pain__title {
  font-size: clamp(1.35rem, 2.2vw, 1.75rem);
  line-height: 1.2;
  letter-spacing: -0.02em;
  font-weight: 400;
  margin: 0 0 .6rem 0;
  color: var(--ink);
  max-width: 28ch;
  text-wrap: balance;
}
.t3-pain__body {
  color: var(--muted);
  font-size: 16.5px;
  line-height: 1.6;
  margin: 0;
  max-width: 56ch;
}

/* ============================================================
   THESIS — dark anchor, softened
   ============================================================ */

.t3-thesis {
  background: var(--ink);
  color: var(--bg);
  padding-top: clamp(7rem, 12vw, 10rem);
  padding-bottom: clamp(7rem, 12vw, 10rem);
}
.t3-thesis .t3-kicker { color: var(--teal); }

.t3-thesis__quote {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: clamp(2rem, 4.4vw, 3.5rem);
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin: 0;
  max-width: 26ch;
  color: var(--bg);
  text-wrap: balance;
}
.t3-thesis__quote .accent { color: #4fb2c2; }

.t3-thesis__attr {
  margin-top: 3rem;
  color: var(--muted-2);
  font-size: 13px;
  letter-spacing: 0.005em;
}

/* ============================================================
   GUIDE
   ============================================================ */

.t3-guide {
  display: grid;
  grid-template-columns: minmax(0, 4fr) minmax(0, 7fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: start;
}
.t3-guide__portrait {
  aspect-ratio: 4 / 5;
  background: var(--bg-alt);
  position: relative;
  overflow: hidden;
}
.t3-guide__portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.t3-guide__name {
  font-weight: 400;
  font-size: clamp(1.9rem, 3.6vw, 2.75rem);
  letter-spacing: -0.03em;
  line-height: 1;
  margin: 0 0 1rem 0;
}
.t3-guide__role {
  font-size: 13px;
  color: var(--teal);
  margin: 0 0 2rem 0;
}
.t3-guide__body p {
  margin: 0 0 1.25rem 0;
  color: var(--ink);
  font-size: 17px;
  line-height: 1.6;
  max-width: 56ch;
}
.t3-guide__body p:last-child { margin-bottom: 0; }

/* ============================================================
   FRAMEWORK
   ============================================================ */

.t3-framework__intro {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  gap: clamp(2rem, 6vw, 5rem);
  margin-bottom: clamp(4rem, 8vw, 6rem);
  align-items: start;
}

.t3-pillars {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(2rem, 5vw, 4rem);
}
.t3-pillar__idx {
  font-size: 13px;
  color: var(--muted);
  display: block;
  margin-bottom: 2rem;
}
.t3-pillar__title {
  font-weight: 400;
  font-size: clamp(1.3rem, 2vw, 1.6rem);
  line-height: 1.1;
  letter-spacing: -0.025em;
  margin: 0 0 1rem 0;
  max-width: 14ch;
  text-wrap: balance;
}
.t3-pillar__body {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
  margin: 0;
  max-width: 36ch;
}

/* ============================================================
   INSIDE — four outcomes, quiet list
   ============================================================ */

.t3-inside__grid {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: start;
}

.t3-inside__list { margin: 0; padding: 0; list-style: none; }
.t3-inside__item {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 1.75rem;
  padding: 1.75rem 0;
  align-items: baseline;
}
.t3-inside__item + .t3-inside__item { border-top: 1px solid var(--hairline); }
.t3-inside__num {
  font-size: 13px;
  color: var(--muted);
  padding-top: 4px;
}
.t3-inside__text {
  font-weight: 400;
  font-size: clamp(1.15rem, 1.6vw, 1.3rem);
  line-height: 1.35;
  margin: 0;
  letter-spacing: -0.015em;
  color: var(--ink);
  max-width: 50ch;
  text-wrap: pretty;
}

/* ============================================================
   PLAN — 3 steps
   ============================================================ */

.t3-plan__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(2rem, 5vw, 4rem);
  margin-top: clamp(3rem, 5vw, 4rem);
}
.t3-step__n {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 2rem;
  display: block;
}
.t3-step__title {
  font-weight: 400;
  font-size: clamp(1.4rem, 2.2vw, 1.75rem);
  letter-spacing: -0.025em;
  margin: 0 0 1rem 0;
  line-height: 1.05;
  max-width: 14ch;
  text-wrap: balance;
}
.t3-step__body {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
  margin: 0;
  max-width: 36ch;
}

/* ============================================================
   FINAL CTA + FORM — unboxed
   ============================================================ */

.t3-final { background: var(--bg-alt); padding-top: 0; }
.t3-final .t3-sectionbar { border-top: 0; padding-top: calc(var(--section) * 0.55); }

.t3-final__grid {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 6fr);
  gap: clamp(3rem, 7vw, 6rem);
  align-items: start;
}

/* Form sits in space, no card */
.t3-form {
  background: transparent;
  border: 0;
  padding: 0;
}

.t3-field {
  display: block;
  margin-bottom: 1.75rem;
}
.t3-field__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.t3-field__row .t3-field { margin-bottom: 1.75rem; }

.t3-field label {
  display: block;
  font-size: 13px;
  color: var(--muted);
  margin-bottom: .65rem;
  font-weight: 400;
}

.t3-field input {
  width: 100%;
  padding: .7rem 0;
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 17px;
  color: var(--ink);
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--ink);
  border-radius: 0;
  outline: none;
  transition: border-color .15s ease;
  letter-spacing: -0.005em;
}
.t3-field input:focus {
  border-bottom-color: var(--teal);
}
.t3-field input::placeholder { color: var(--muted-2); font-weight: 400; }

.t3-form__submit {
  margin-top: 1.25rem;
}

.t3-form__alt {
  margin-top: 2rem;
  font-size: 14px;
  color: var(--muted);
}
.t3-form__alt a {
  color: var(--ink);
  border-bottom: 1px solid var(--hairline);
  padding-bottom: 2px;
}
.t3-form__alt a:hover { border-bottom-color: var(--teal); color: var(--teal); opacity: 1; }

.t3-form__status {
  margin-top: 1.25rem;
  font-size: 13px;
  color: var(--muted);
  min-height: 1em;
}
.t3-form__status.is-error { color: #b42318; }
.t3-form__status.is-success { color: var(--teal); }

/* ============================================================
   Hover states — subtle motion, restrained
   ============================================================ */

.t3-pillar,
.t3-step {
  transition: transform .2s ease;
}
.t3-pillar:hover,
.t3-step:hover {
  transform: translateY(-2px);
}
.t3-pillar__idx,
.t3-pillar__title,
.t3-step__n,
.t3-step__title {
  transition: color .2s ease;
}
.t3-pillar:hover .t3-pillar__idx,
.t3-pillar:hover .t3-pillar__title,
.t3-step:hover .t3-step__n,
.t3-step:hover .t3-step__title {
  color: var(--teal);
}

.t3-inside__num,
.t3-inside__text {
  transition: color .2s ease;
}
.t3-inside__item:hover .t3-inside__num,
.t3-inside__item:hover .t3-inside__text {
  color: var(--teal);
}


.t3-guide__portrait img {
  transition: transform .4s ease;
}
.t3-guide__portrait:hover img {
  transform: scale(1.02);
}

/* ============================================================
   Responsive
   ============================================================ */

@media (max-width: 860px) {
  .t3-problem__grid,
  .t3-framework__intro,
  .t3-inside__grid,
  .t3-final__grid,
  .t3-guide {
    grid-template-columns: 1fr;
  }
  .t3-pillars { grid-template-columns: 1fr; gap: 2.5rem; }
  .t3-plan__grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .t3-hero { min-height: auto; }
  .t3-field__row { grid-template-columns: 1fr; gap: 0; }
}


/* ============================================================
   ─── Production Site Header (mirrors WordPress nav) ─────────
   ============================================================ */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 99999;
  background: var(--bg);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid transparent;
  font-family: var(--font-sans);
  transition: box-shadow 0.3s ease, background 0.3s ease, border-color 0.3s ease;
}

.site-header.is-scrolled {
  border-bottom-color: var(--line);
  background: rgba(249, 248, 247, 0.98);
}

.site-header-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 1.15rem 4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  position: relative;
}

.site-logo {
  font-size: 0.9rem;
  font-weight: 900;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ink);
  text-decoration: none;
  white-space: nowrap;
  border-bottom: 0;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 3rem;
}

.nav-item {
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ink);
  text-decoration: none;
  border-bottom: 0;
  position: relative;
  padding-bottom: 4px;
}

.nav-item::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--teal);
  transition: width 0.25s ease;
}

.nav-item:hover { opacity: 1; }
.nav-item:hover::after { width: 100%; }
.nav-cta               { color: var(--teal); }

.nav-toggle {
  display: none;
  border: 2px solid var(--ink);
  background: transparent;
  color: var(--ink);
  padding: 0.65rem 0.9rem;
  cursor: pointer;
  align-items: center;
  gap: 0.75rem;
  font-family: inherit;
}

.nav-toggle-text {
  font-size: 0.65rem;
  font-weight: 900;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}

.nav-toggle-icon {
  width: 18px;
  height: 12px;
  position: relative;
  display: inline-block;
}

.nav-toggle-icon::before,
.nav-toggle-icon::after {
  content: '';
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--ink);
  transition: transform 0.2s ease, top 0.2s ease;
}

.nav-toggle-icon::before { top: 2px; }
.nav-toggle-icon::after  { top: 8px; }

/* ============================================================
   ─── Production Site Footer (mirrors WordPress footer) ──────
   ============================================================ */

.site-footer {
  background-color: #0a0a0a;
  color: #ffffff;
  padding: 4rem 0 2.25rem;
  border-top: 1px solid #1f2937;
  font-family: var(--font-sans);
}

.site-footer h1, .site-footer h2, .site-footer h3,
.site-footer h4, .site-footer p { margin-top: 0; }
.site-footer ul { margin: 0; }

.rp-footer-container {
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 1rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 2.25rem;
  margin-bottom: 2.5rem;
  align-items: start;
}

.footer-logo {
  max-width: 420px;
  height: auto;
  margin-bottom: 0.75rem;
  display: block;
}

.footer-role {
  display: block;
  font-size: 11px;
  letter-spacing: 0.28em;
  color: #9ca3af;
  margin-bottom: 1.4rem;
  font-weight: 800;
  text-transform: uppercase;
}

.footer-tagline {
  color: #d1d5db;
  font-size: 1rem;
  line-height: 1.6;
  max-width: 520px;
  margin-bottom: 1.35rem;
}

.footer-badge {
  display: inline-block;
  font-size: 10px;
  letter-spacing: 0.32em;
  padding: 0.7rem 0.95rem;
  border: 1px solid #374151;
  color: #5bbdd4;
  background: rgba(0,103,120,0.12);
  font-weight: 900;
  text-transform: uppercase;
}

.footer-label {
  font-size: 10px;
  color: #5bbdd4;
  letter-spacing: 0.35em;
  margin-bottom: 1.25rem;
  display: block;
  font-weight: 900;
  text-transform: uppercase;
}

.footer-links { list-style: none; padding: 0; }
.footer-links li { margin-bottom: 0.85rem; }

.footer-links a {
  color: #ffffff;
  text-decoration: none;
  font-size: 0.98rem;
  font-weight: 650;
  display: inline-block;
  opacity: 0.92;
  border-bottom: 0;
  transition: color 0.2s ease, transform 0.2s ease;
}

.footer-links a:hover {
  color: #5bbdd4;
  transform: translateX(6px);
  opacity: 1;
}

.footer-email {
  display: inline-block;
  color: #ffffff;
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 900;
  margin-bottom: 1.1rem;
  opacity: 0.95;
  border-bottom: 0;
  transition: color 0.2s ease;
}

.footer-email:hover { color: #5bbdd4; opacity: 1; }

.footer-social {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  margin-bottom: 1.2rem;
}

.footer-social a {
  color: #9ca3af;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 700;
  display: inline-block;
  border-bottom: 0;
  transition: color 0.2s ease, transform 0.2s ease;
}

.footer-social a:hover {
  color: #ffffff;
  transform: translateX(6px);
}

.footer-note { color: #6b7280; font-size: 0.9rem; line-height: 1.5; }

.footer-bottom {
  border-top: 1px solid #111827;
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.footer-bottom-left,
.footer-bottom-right {
  font-size: 10px;
  letter-spacing: 0.35em;
  color: #6b7280;
  font-weight: 900;
  text-transform: uppercase;
}

/* ─── Header / footer responsive ─────────────────────────── */

@media (max-width: 1024px) {
  .site-header-inner   { padding: 1.1rem 2rem; }
  .site-nav            { gap: 1.5rem; }
  .rp-footer-container { padding: 0 2rem; }
  .footer-grid         { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-logo         { max-width: 380px; }
  .footer-tagline      { max-width: 100%; }
  .footer-bottom       { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 768px) {
  .site-header-inner {
    padding: 0.9rem 1.25rem;
    gap: 1rem;
  }

  .nav-toggle { display: inline-flex; }

  .site-nav {
    position: absolute;
    left: 0;
    top: 100%;
    width: 100%;
    background: rgba(249, 248, 247, 0.98);
    border-bottom: 1px solid var(--line);
    display: grid;
    gap: 0;
    padding: 0.75rem 1.25rem 1.25rem;
    transform-origin: top;
    transform: scaleY(0);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.18s ease, opacity 0.18s ease;
  }

  .site-header.is-open .site-nav {
    transform: scaleY(1);
    opacity: 1;
    pointer-events: auto;
  }

  .site-nav .nav-item {
    padding: 1rem 0;
    border-top: 1px solid rgba(228,223,219,0.7);
  }

  .site-nav .nav-item::after { display: none; }

  .site-header.is-open .nav-toggle-icon::before {
    top: 5px;
    transform: rotate(45deg);
  }

  .site-header.is-open .nav-toggle-icon::after {
    top: 5px;
    transform: rotate(-45deg);
  }
}

@media (max-width: 480px) {
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}
