/* Nina Card — Site institucional completo e estático */
:root {
  --teal-950: #062b37;
  --teal-900: #0b3c4b;
  --teal-850: #0e4655;
  --teal-800: #174e5e;
  --teal-700: #245466;
  --coral: #ef8f78;
  --coral-strong: #f66f60;
  --cream: #f7f2ef;
  --soft: #fbf8f6;
  --paper: #ffffff;
  --ink: #102934;
  --muted: #657680;
  --line: #e7edf0;
  --shadow: 0 28px 90px rgba(2, 24, 31, 0.16);
  --shadow-soft: 0 18px 50px rgba(2, 24, 31, 0.10);
  --max: 1180px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--soft);
  color: var(--ink);
  overflow-x: hidden;
}

a { color: inherit; }

img { max-width: 100%; }

button, input, textarea, select { font: inherit; }

button { cursor: pointer; }

.container {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
}

/* Header */
.topbar {
  position: sticky;
  top: 0;
  z-index: 80;
  background: rgba(6, 43, 55, 0.92);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(18px);
  transition: background .25s ease, box-shadow .25s ease, padding .25s ease;
}

.topbar.scrolled {
  background: rgba(6, 43, 55, 0.98);
  box-shadow: 0 18px 44px rgba(0,0,0,0.16);
}

.nav-wrap {
  min-height: 86px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.brand img {
  width: 174px;
  height: 54px;
  object-fit: contain;
  object-position: left center;
  display: block;
  transition: transform .25s ease;
}

.brand:hover img {
  transform: translateY(-1px) scale(1.02);
}

.nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 7px;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.13);
}

.nav a {
  color: rgba(255,255,255,0.86);
  text-decoration: none;
  font-weight: 900;
  font-size: 13px;
  padding: 10px 13px;
  border-radius: 999px;
  white-space: nowrap;
  transition: background .22s ease, color .22s ease, transform .22s ease;
}

.nav a:hover,
.nav a.active {
  background: #fff;
  color: var(--teal-900);
  transform: translateY(-1px);
}

.nav-cta {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 44px;
  border-radius: 999px;
  padding: 0 18px;
  color: var(--teal-900);
  background: #fff;
  text-decoration: none;
  font-weight: 950;
  box-shadow: 0 16px 36px rgba(0,0,0,0.16);
  transition: transform .22s ease, box-shadow .22s ease;
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 44px rgba(0,0,0,0.22);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 42px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.10);
  border-radius: 16px;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: #fff;
  margin: 4px auto;
  border-radius: 99px;
}

/* Hero */
.hero-dark {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 10%, rgba(239,143,120,0.34), transparent 28%),
    radial-gradient(circle at 90% 18%, rgba(255,255,255,0.11), transparent 24%),
    linear-gradient(180deg, var(--teal-950), var(--teal-850));
  color: #fff;
}

.hero-dark::before,
.hero-dark::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
  filter: blur(16px);
  opacity: .38;
  animation: floatOrb 10s ease-in-out infinite alternate;
}

.hero-dark::before {
  width: 300px;
  height: 300px;
  background: var(--coral);
  left: -120px;
  top: 40px;
}

.hero-dark::after {
  width: 330px;
  height: 330px;
  background: rgba(255,255,255,0.16);
  right: -130px;
  top: 110px;
  animation-delay: 1.2s;
}

@keyframes floatOrb {
  to { transform: translate3d(26px, 22px, 0) scale(1.08); }
}

.hero-grid {
  position: relative;
  z-index: 1;
  min-height: 680px;
  display: grid;
  grid-template-columns: 1.05fr .72fr;
  gap: 48px;
  align-items: center;
  padding: 64px 0 82px;
}

.eyebrow {
  display: inline-flex;
  color: var(--coral);
  font-weight: 950;
  letter-spacing: .16em;
  text-transform: uppercase;
  font-size: 12px;
  margin-bottom: 14px;
}

.hero-title,
.page-title {
  margin: 0 0 22px;
  font-size: clamp(44px, 7vw, 82px);
  line-height: .92;
  letter-spacing: -3.5px;
}

.hero-copy,
.page-copy {
  color: rgba(255,255,255,0.76);
  font-size: 19px;
  line-height: 1.62;
  max-width: 640px;
  margin: 0;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 30px 0 24px;
}

.btn {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 18px;
  padding: 0 22px;
  font-weight: 950;
  text-decoration: none;
  transition: transform .22s ease, box-shadow .22s ease, background .22s ease;
}

.btn-primary {
  background: linear-gradient(135deg, var(--coral), var(--coral-strong));
  color: #fff;
  box-shadow: 0 18px 48px rgba(246,111,96,0.25);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 26px 60px rgba(246,111,96,0.34);
}

.btn-ghost {
  color: #fff;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.16);
}

.btn-ghost:hover {
  background: rgba(255,255,255,0.14);
  transform: translateY(-2px);
}

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

.trust-row span {
  padding: 9px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.13);
  color: rgba(255,255,255,0.84);
  font-weight: 850;
  font-size: 13px;
}

/* Phone preview */
.phone {
  width: min(390px, 100%);
  min-height: 650px;
  justify-self: center;
  border-radius: 42px;
  padding: 22px;
  color: var(--teal-900);
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255,255,255,0.96), rgba(250,247,245,0.98));
  border: 1px solid rgba(255,255,255,0.7);
  box-shadow: var(--shadow);
  animation: phoneFloat 5s ease-in-out infinite;
}

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

.phone::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 88% 8%, rgba(239,143,120,0.20), transparent 24%),
    linear-gradient(140deg, transparent 0 58%, rgba(239,143,120,0.12) 58% 59%, transparent 59% 100%);
}

.phone > * {
  position: relative;
  z-index: 1;
}

.phone-status {
  display: flex;
  justify-content: space-between;
  font-weight: 950;
  font-size: 13px;
  margin-bottom: 34px;
}

.phone-logo {
  width: 250px;
  max-width: 86%;
  display: block;
  margin: 0 auto 40px;
}

.app-card {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 16px;
  padding: 24px;
  border-radius: 30px;
  color: #fff;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 14% 4%, rgba(239,143,120,0.54), transparent 26%),
    linear-gradient(135deg, var(--teal-950), var(--teal-900));
  box-shadow: 0 24px 65px rgba(8,44,56,0.24);
}

.app-card::after {
  content: "";
  position: absolute;
  inset: -40% auto -40% -40%;
  width: 80px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.30), transparent);
  animation: shine 4.5s ease-in-out infinite;
}

@keyframes shine {
  0% { transform: translateX(-140%) rotate(18deg); opacity: 0; }
  30% { opacity: 1; }
  100% { transform: translateX(520%) rotate(18deg); opacity: 0; }
}

.app-card span {
  display: block;
  color: rgba(255,255,255,0.66);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-weight: 950;
}

.app-card strong {
  display: block;
  font-size: 38px;
  margin: 10px 0 6px;
  letter-spacing: -1.5px;
}

.app-card small {
  color: #e9fff5;
  font-weight: 800;
}

.mini-qr {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: #fff;
  color: var(--teal-900);
  font-weight: 950;
}

.app-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 18px;
}

.app-grid button,
.app-note {
  border: 0;
  border-radius: 20px;
  background: #fff;
  color: var(--teal-900);
  box-shadow: 0 14px 34px rgba(8,44,56,0.08);
  font-weight: 900;
  transition: transform .22s ease, box-shadow .22s ease;
}

.app-grid button {
  min-height: 76px;
}

.app-grid button:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 42px rgba(8,44,56,0.13);
}

.app-note {
  margin-top: 12px;
  padding: 18px;
}

.app-note span {
  display: block;
  color: var(--coral);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .12em;
}

.app-note strong {
  display: block;
  margin-top: 4px;
}

/* Sections */
.section-white {
  background: var(--paper);
  padding: 88px 0;
}

.section-soft {
  background: var(--soft);
  padding: 88px 0;
}

.section-dark {
  background: linear-gradient(180deg, var(--teal-950), var(--teal-900));
  color: #fff;
  padding: 88px 0;
}

.section-title {
  max-width: 780px;
  margin-bottom: 34px;
}

.section-title h2 {
  margin: 0 0 14px;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1;
  letter-spacing: -2.4px;
}

.section-title p {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.62;
}

.section-dark .section-title p,
.section-dark .card p,
.section-dark .step-card p {
  color: rgba(255,255,255,0.72);
}

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

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

.split {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 22px;
  align-items: start;
}

.card,
.plan-card,
.step-card,
.contact-card {
  border-radius: 30px;
  padding: 28px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
  transition: transform .28s cubic-bezier(.2,.8,.2,1), box-shadow .28s ease, border-color .28s ease;
}

.card:hover,
.plan-card:hover,
.step-card:hover,
.contact-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 80px rgba(2,24,31,0.16);
  border-color: rgba(239,143,120,0.28);
}

.section-dark .card,
.section-dark .step-card {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.13);
  box-shadow: 0 24px 80px rgba(0,0,0,0.14);
}

.icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 20px;
  background: rgba(239,143,120,0.12);
  color: var(--coral);
  margin-bottom: 22px;
  transition: transform .28s ease, background .28s ease;
}

.card:hover .icon {
  transform: scale(1.08) rotate(-4deg);
  background: rgba(239,143,120,0.18);
}

.icon svg {
  width: 30px;
  height: 30px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.card h3,
.plan-card h2,
.step-card h3 {
  margin: 0 0 10px;
  font-size: 24px;
  letter-spacing: -.5px;
}

.card p,
.step-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.58;
}

.plan-card {
  color: var(--ink);
}

.plan-card h2 {
  font-size: 44px;
  letter-spacing: -1.8px;
}

.plan-card p {
  color: var(--muted);
}

.price {
  margin: 28px 0;
}

.price strong {
  display: block;
  font-size: 66px;
  color: var(--teal-900);
  letter-spacing: -3px;
  line-height: .9;
}

.price span {
  color: var(--muted);
  font-weight: 850;
}

.check-list {
  color: #53666e;
  line-height: 1.95;
  padding-left: 20px;
  margin: 0 0 26px;
}

.timeline {
  display: grid;
  gap: 14px;
}

.step-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: start;
}

.step-number {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 15px;
  background: var(--coral);
  color: #fff;
  font-weight: 950;
}

.download-panel {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  border-radius: 34px;
  padding: 32px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.13);
  box-shadow: 0 24px 80px rgba(0,0,0,0.14);
}

.store-panel {
  display: grid;
  gap: 10px;
  min-width: 240px;
}

.store-button {
  display: grid;
  text-align: left;
  gap: 3px;
  border-radius: 18px;
  padding: 15px 18px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.08);
  color: #fff;
  text-decoration: none;
  transition: transform .22s ease, background .22s ease;
}

.store-button:hover {
  transform: translateY(-3px);
  background: rgba(255,255,255,0.13);
}

.store-button.active {
  background: #fff;
  color: var(--teal-900);
}

.store-button span {
  font-size: 12px;
  color: var(--muted);
  font-weight: 850;
}

.store-button strong {
  font-size: 18px;
}

/* Page hero */
.page-hero {
  padding: 96px 0 78px;
  color: #fff;
  text-align: center;
}

.page-hero .page-copy {
  margin: 0 auto;
}

.page-main {
  background: var(--soft);
}

/* Contact */
.contact-card label {
  display: block;
  color: #51646d;
  font-weight: 900;
  margin: 14px 0 8px;
}

.contact-card input,
.contact-card textarea {
  width: 100%;
  border: 1px solid #e6ecef;
  border-radius: 16px;
  padding: 14px;
  outline: none;
  background: #fff;
}

.contact-card textarea {
  min-height: 130px;
  resize: vertical;
}

.contact-card input:focus,
.contact-card textarea:focus {
  border-color: var(--coral);
  box-shadow: 0 0 0 4px rgba(239,143,120,0.12);
}

.contact-card button {
  width: 100%;
  margin-top: 16px;
}

/* Footer */
.footer {
  background: var(--teal-950);
  padding: 42px 0;
  color: rgba(255,255,255,0.72);
}

.footer-inner {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  align-items: center;
}

.footer img {
  width: 180px;
  height: 56px;
  object-fit: contain;
}

.footer p {
  margin: 8px 0 4px;
  color: #fff;
  font-weight: 900;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.footer-links a {
  text-decoration: none;
  font-weight: 850;
  transition: color .2s ease;
}

.footer-links a:hover {
  color: #fff;
}

/* Reveal animations */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .7s ease, transform .7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 { transition-delay: .12s; }
.delay-2 { transition-delay: .22s; }

/* Responsive */
@media (max-width: 1020px) {
  .nav-wrap {
    grid-template-columns: auto auto;
  }

  .menu-toggle {
    display: block;
    justify-self: end;
  }

  .nav {
    display: none;
    grid-column: 1 / -1;
    justify-self: stretch;
    flex-direction: column;
    align-items: stretch;
    border-radius: 24px;
  }

  .nav.open {
    display: flex;
  }

  .nav a {
    padding: 13px 14px;
  }

  .nav-cta {
    display: none;
  }

  .hero-grid,
  .split,
  .download-panel,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    min-height: 0;
    padding-top: 40px;
  }

  .phone {
    width: min(390px, 100%);
  }

  .grid-3,
  .grid-2 {
    grid-template-columns: 1fr;
  }

  .download-panel {
    align-items: start;
  }

  .footer-inner {
    text-align: center;
    justify-items: center;
  }
}

@media (max-width: 720px) {
  .nav-wrap {
    min-height: 74px;
  }

  .brand img {
    width: 148px;
    height: 46px;
  }

  .hero-title,
  .page-title {
    font-size: 43px;
    letter-spacing: -2.2px;
  }

  .hero-copy,
  .page-copy,
  .section-title p {
    font-size: 16px;
  }

  .hero-actions {
    display: grid;
  }

  .section-white,
  .section-soft,
  .section-dark {
    padding: 64px 0;
  }

  .card,
  .plan-card,
  .step-card,
  .contact-card,
  .download-panel {
    border-radius: 25px;
    padding: 22px;
  }

  .price strong {
    font-size: 54px;
  }

  .store-panel {
    min-width: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .reveal,
  .phone,
  .hero-dark::before,
  .hero-dark::after,
  .app-card::after {
    transition: none;
    animation: none;
    transform: none;
    opacity: 1;
  }
}


/* V7 — Refinamento premium de navbar e footer */
.topbar {
  background:
    linear-gradient(180deg, rgba(6,43,55,.96), rgba(6,43,55,.82));
  border-bottom: 1px solid rgba(255,255,255,.10);
}

.topbar::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -1px;
  width: min(1180px, calc(100% - 32px));
  height: 1px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, transparent, rgba(239,143,120,.42), transparent);
  pointer-events: none;
}

.topbar.scrolled {
  background: rgba(6,43,55,.98);
  box-shadow: 0 20px 54px rgba(0,0,0,.20);
}

.nav-wrap {
  min-height: 82px;
}

.brand {
  position: relative;
  padding: 4px 0;
}

.brand::after {
  content: "";
  position: absolute;
  left: 6px;
  right: 16px;
  bottom: 4px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--coral), transparent);
  opacity: .0;
  transform: scaleX(.7);
  transform-origin: left;
  transition: opacity .25s ease, transform .25s ease;
}

.brand:hover::after {
  opacity: .85;
  transform: scaleX(1);
}

.nav {
  background: rgba(255,255,255,.075);
  border-color: rgba(255,255,255,.15);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.06);
}

.nav a {
  position: relative;
  overflow: hidden;
  color: rgba(255,255,255,.82);
}

.nav a::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(239,143,120,.18), rgba(255,255,255,.08));
  opacity: 0;
  transition: opacity .22s ease;
}

.nav a:hover::before {
  opacity: 1;
}

.nav a:hover,
.nav a.active {
  background: rgba(255,255,255,.96);
  color: var(--teal-900);
  box-shadow: 0 12px 28px rgba(0,0,0,.12);
}

.nav-cta {
  background: linear-gradient(135deg, #fff, #fff4f1);
  color: var(--teal-900);
  border: 1px solid rgba(255,255,255,.72);
}

.nav-cta::after {
  content: " →";
  color: var(--coral-strong);
}

.menu-toggle {
  transition: transform .22s ease, background .22s ease;
}

.menu-toggle:hover {
  transform: translateY(-2px);
  background: rgba(255,255,255,.15);
}

/* Footer premium */
.premium-footer {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 14% 0%, rgba(239,143,120,.22), transparent 28%),
    linear-gradient(180deg, #062b37, #041f29);
  padding: 56px 0 0;
}

.premium-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, transparent 0 48%, rgba(255,255,255,.045) 49%, transparent 50%),
    radial-gradient(circle at 88% 18%, rgba(255,255,255,.08), transparent 24%);
  pointer-events: none;
}

.footer-grid {
  position: relative;
  z-index: 1;
  align-items: start;
  grid-template-columns: minmax(260px, 1.25fr) .65fr .65fr minmax(240px, .95fr);
  gap: 34px;
  padding-bottom: 34px;
}

.footer-brand-block img {
  width: 190px;
  height: 60px;
  object-fit: contain;
  object-position: left center;
}

.footer-brand-block p {
  margin: 10px 0 8px;
  font-size: 20px;
  color: #fff;
  font-weight: 950;
  letter-spacing: -.3px;
}

.footer-brand-block small {
  display: block;
  max-width: 380px;
  color: rgba(255,255,255,.66);
  line-height: 1.55;
}

.footer-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.footer-badges span {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  border-radius: 999px;
  padding: 0 11px;
  background: rgba(255,255,255,.09);
  border: 1px solid rgba(255,255,255,.13);
  color: rgba(255,255,255,.82);
  font-size: 12px;
  font-weight: 850;
}

.footer-column,
.footer-cta {
  display: grid;
  gap: 10px;
}

.footer-column strong,
.footer-cta strong {
  color: #fff;
  font-size: 15px;
  margin-bottom: 4px;
}

.footer-column a {
  color: rgba(255,255,255,.68);
  text-decoration: none;
  font-weight: 800;
  transition: color .22s ease, transform .22s ease;
}

.footer-column a:hover {
  color: #fff;
  transform: translateX(4px);
}

.footer-cta {
  padding: 20px;
  border-radius: 24px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.13);
  box-shadow: 0 24px 70px rgba(0,0,0,.14);
}

.footer-cta p {
  margin: 0;
  color: rgba(255,255,255,.68);
  line-height: 1.5;
  font-size: 14px;
}

.footer-cta a {
  width: fit-content;
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 0 16px;
  background: #fff;
  color: var(--teal-900);
  text-decoration: none;
  font-weight: 950;
  transition: transform .22s ease, box-shadow .22s ease;
}

.footer-cta a:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(0,0,0,.18);
}

.footer-bottom {
  position: relative;
  z-index: 1;
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  padding: 18px 0;
  border-top: 1px solid rgba(255,255,255,.10);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  color: rgba(255,255,255,.58);
  font-size: 13px;
}

@media (max-width: 1020px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 720px) {
  .nav-wrap {
    min-height: 76px;
  }

  .nav.open {
    padding: 9px;
    background: rgba(255,255,255,.10);
  }

  .nav a:hover,
  .nav a.active {
    transform: none;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .premium-footer {
    padding-top: 42px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .footer-brand-block img {
    object-position: center;
  }

  .footer-brand-block,
  .footer-column,
  .footer-cta {
    text-align: center;
    justify-items: center;
  }

  .footer-badges {
    justify-content: center;
  }
}
