/* ============================================================
   A&R LOGÍSTICA — CSS ULTRA (Mais bonito, mais convincente)
   Paleta: Azul confiança + Laranja energia + fundos sofisticados
   ============================================================ */

:root{
  --bg: #07121C;
  --bg2: #0B1D2B;
  --surface: rgba(255,255,255,.06);
  --surface2: rgba(255,255,255,.09);
  --stroke: rgba(255,255,255,.12);

  --text: rgba(255,255,255,.92);
  --muted: rgba(255,255,255,.72);
  --muted2: rgba(255,255,255,.58);

  /* cores inspiradas na logo */
  --blue: #0F5C85;
  --blue2: #0B3852;
  --cyan: #19A6D1;

  --orange: #FF8A3A;
  --orange2: #F56D2B;
  --gold: #FFC56F;

  --shadow: 0 20px 70px rgba(0,0,0,.45);
  --shadow2: 0 14px 40px rgba(0,0,0,.35);

  --r: 18px;
  --r2: 26px;

  --font: "Inter", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  --fontTitle: "Plus Jakarta Sans", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;

  --max: 1180px;

  --gradHero:
    radial-gradient(900px 600px at 20% 18%, rgba(25,166,209,.33), transparent 56%),
    radial-gradient(900px 600px at 78% 24%, rgba(255,138,58,.26), transparent 58%),
    radial-gradient(700px 500px at 55% 92%, rgba(255,197,111,.14), transparent 60%),
    linear-gradient(180deg, var(--bg), var(--bg2));

  --gradBtn: linear-gradient(135deg, var(--orange), var(--orange2));
  --gradCard: linear-gradient(180deg, rgba(255,255,255,.10), rgba(255,255,255,.05));
}

*{ margin:0; padding:0; box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  font-family: var(--font);
  background: var(--gradHero);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}
img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }

.container{
  width:100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 20px;
}
.w-full{ width:100%; }

/* =========================
   TOPBAR
   ========================= */
.topbar{
  border-bottom:1px solid rgba(255,255,255,.10);
  background: linear-gradient(90deg, rgba(25,166,209,.18), rgba(255,138,58,.14));
}
.topbar__content{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:12px;
  padding: 10px 0;
}
.topbar__text{
  font-weight:700;
  font-size:.92rem;
  color: rgba(255,255,255,.84);
}
.topbar__link{
  font-weight:900;
  font-size:.92rem;
  padding: 7px 12px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
  transition: .25s ease;
}
.topbar__link:hover{
  transform: translateY(-1px);
  background: rgba(255,255,255,.10);
  border-color: rgba(255,255,255,.22);
}

/* =========================
   NAVBAR
   ========================= */
.navbar{
  position: sticky;
  top:0;
  z-index: 999;
  background: rgba(7,18,28,.62);
  backdrop-filter: blur(14px);
  border-bottom:1px solid rgba(255,255,255,.10);
}
.navbar__content{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:12px;
  padding: 14px 0;
}

.brand__logo{
  width: 175px;
  filter: drop-shadow(0 10px 22px rgba(0,0,0,.35));
}

.nav{
  display:flex;
  gap: 16px;
  align-items:center;
}
.nav__link{
  font-weight:800;
  font-size:.95rem;
  color: rgba(255,255,255,.78);
  padding: 10px 12px;
  border-radius: 14px;
  transition: .25s ease;
}
.nav__link:hover{
  background: rgba(255,255,255,.07);
  color: rgba(255,255,255,.92);
  transform: translateY(-1px);
}
.nav__link.active{
  background: linear-gradient(135deg, rgba(25,166,209,.18), rgba(255,138,58,.12));
  border: 1px solid rgba(255,255,255,.12);
  color: rgba(255,255,255,.95);
}

.nav__cta{
  display:flex;
  gap: 10px;
  align-items:center;
}

/* toggle mobile */
.nav__toggle{
  display:none;
  width:46px;
  height:42px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
  cursor:pointer;
}
.nav__toggle-line{
  width:18px;
  height:2px;
  border-radius:99px;
  background: rgba(255,255,255,.90);
  display:block;
  margin: 6px auto;
}

/* mobile panel */
.nav-mobile{
  display:none;
  border-top:1px solid rgba(255,255,255,.10);
  background: rgba(7,18,28,.75);
  backdrop-filter: blur(14px);
}
.nav-mobile.is-open{ display:block; }
.nav-mobile__content{
  display:grid;
  gap:10px;
  padding: 14px 0 18px;
}
.nav-mobile__link{
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.06);
  font-weight:900;
}
.nav-mobile__ctas{
  display:grid;
  gap:10px;
  margin-top: 6px;
}

/* =========================
   BUTTONS (mais bonitos)
   ========================= */
.btn{
  display:inline-flex;
  justify-content:center;
  align-items:center;
  gap:10px;
  padding: 12px 16px;
  border-radius: 16px;
  font-weight: 950;
  letter-spacing:.01em;
  border: 1px solid transparent;
  transition:.25s ease;
  cursor:pointer;
}
.btn--lg{ padding: 14px 18px; border-radius: 18px; }

.btn--primary{
  background: var(--gradBtn);
  color: rgba(7,18,28,.95);
  border-color: rgba(255,255,255,.10);
  box-shadow: 0 18px 42px rgba(245,109,43,.22);
}
.btn--primary:hover{
  transform: translateY(-2px);
  filter: brightness(1.04);
  box-shadow: 0 26px 60px rgba(245,109,43,.30);
}

.btn--ghost{
  background: rgba(255,255,255,.06);
  border-color: rgba(255,255,255,.14);
  color: rgba(255,255,255,.92);
  box-shadow: 0 14px 34px rgba(0,0,0,.20);
}
.btn--ghost:hover{
  transform: translateY(-2px);
  background: rgba(255,255,255,.10);
  border-color: rgba(255,255,255,.22);
}

/* =========================
   HERO (mais convincente)
   ========================= */
.hero{
  padding: 64px 0 16px;
}
.hero__grid{
  display:grid;
  grid-template-columns: 1.08fr .92fr;
  gap: 36px;
  align-items:center;
  padding: 10px 0 32px;
}
.badge{
  display:inline-flex;
  gap:10px;
  align-items:center;
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.14);
  box-shadow: var(--shadow2);
  margin-bottom: 14px;
}
.badge__dot{
  width:10px; height:10px; border-radius:99px;
  background: radial-gradient(circle at 30% 30%, var(--gold), var(--orange2));
  box-shadow: 0 0 18px rgba(255,197,111,.40);
}
.badge__text{
  font-weight: 900;
  font-size: .92rem;
  color: rgba(255,255,255,.88);
}

.hero__title{
  font-family: var(--fontTitle);
  font-weight: 1000;
  letter-spacing: -0.035em;
  line-height: 1.05;
  font-size: clamp(2.1rem, 1.6rem + 2vw, 3.2rem);
  margin-bottom: 14px;
  background: linear-gradient(180deg, rgba(255,255,255,.96), rgba(255,255,255,.78));
  -webkit-background-clip:text;
  background-clip:text;
  color: transparent;
}
.hero__subtitle{
  font-size: 1.08rem;
  color: rgba(255,255,255,.74);
  max-width: 64ch;
  margin-bottom: 18px;
}
.hero__actions{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  margin-bottom: 18px;
}

.hero__trust{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 18px 0 14px;
}
.trust{
  border: 1px solid rgba(255,255,255,.12);
  background: linear-gradient(135deg, rgba(25,166,209,.11), rgba(255,138,58,.07));
  border-radius: 18px;
  padding: 12px;
  box-shadow: 0 18px 46px rgba(0,0,0,.22);
}
.trust__number{
  font-family: var(--fontTitle);
  font-weight: 1000;
  color: rgba(255,255,255,.94);
  letter-spacing:-0.02em;
}
.trust__label{
  font-weight: 800;
  color: rgba(255,255,255,.70);
  font-size: .92rem;
}
.hero__note{
  border-left: 3px solid rgba(25,166,209,.55);
  padding-left: 12px;
}
.hero__note-text{
  color: rgba(255,255,255,.72);
  font-weight: 800;
}

/* =========================
   PHONE (mais premium ainda)
   ========================= */
.hero__visual{
  position:relative;
  min-height: 520px;
  display:grid;
  place-items:center;
}

.phone{
  width: min(360px, 92%);
  border-radius: 34px;
  padding: 14px;
  border: 1px solid rgba(255,255,255,.16);
  background: linear-gradient(180deg, rgba(255,255,255,.10), rgba(255,255,255,.06));
  box-shadow: 0 30px 90px rgba(0,0,0,.55);
}
.phone__top{
  display:flex;
  justify-content:center;
  padding: 4px 0 10px;
}
.phone__pill{
  width: 110px;
  height: 10px;
  border-radius: 99px;
  background: rgba(255,255,255,.16);
}
.phone__screen{
  border-radius: 26px;
  padding: 16px;
  background:
    radial-gradient(420px 260px at 10% 0%, rgba(25,166,209,.22), transparent 60%),
    radial-gradient(380px 260px at 100% 20%, rgba(255,138,58,.18), transparent 58%),
    linear-gradient(180deg, rgba(11,29,43,.92), rgba(7,18,28,.94));
  border: 1px solid rgba(255,255,255,.10);
  overflow:hidden;
  position:relative;
}
.screen__header{ display:flex; gap:12px; align-items:center; margin-bottom:14px; position:relative; z-index:1; }
.screen__logo{
  width:44px; height:44px; border-radius: 16px;
  background: linear-gradient(135deg, rgba(25,166,209,.95), rgba(255,138,58,.85));
  box-shadow: 0 18px 40px rgba(0,0,0,.35);
}
.screen__title-small{ font-weight:900; font-size:.86rem; color: rgba(255,255,255,.72); line-height:1.1; }
.screen__title-big{ font-family: var(--fontTitle); font-weight: 1000; font-size: 1.12rem; color: rgba(255,255,255,.94); letter-spacing:-0.02em; line-height:1.1; }

.screen__card{
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.06);
  border-radius: 18px;
  padding: 12px;
  margin-bottom: 12px;
  position:relative; z-index:1;
}
.screen__card-label{ font-weight:900; font-size:.86rem; color: rgba(255,255,255,.68); }
.screen__card-value{ font-weight:1000; font-size:1rem; color: rgba(255,255,255,.93); }

.screen__grid{
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap:10px;
  margin: 10px 0 12px;
  position:relative; z-index:1;
}
.mini{
  border: 1px solid rgba(255,255,255,.10);
  background: linear-gradient(135deg, rgba(25,166,209,.10), rgba(255,138,58,.08));
  border-radius: 16px;
  padding: 10px;
}
.mini__k{ font-weight:900; font-size:.82rem; color: rgba(255,255,255,.70); }
.mini__v{ font-family: var(--fontTitle); font-weight: 1000; font-size:.98rem; color: rgba(255,255,255,.94); letter-spacing:-0.02em; }

.screen__timeline{
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.05);
  border-radius: 18px;
  padding: 12px;
  display:grid;
  gap:10px;
  position:relative; z-index:1;
}
.step{ display:flex; gap:10px; align-items:flex-start; }
.step__dot{
  width:10px; height:10px; border-radius:99px; margin-top:6px;
  background: radial-gradient(circle at 30% 30%, var(--gold), var(--orange2));
  box-shadow: 0 0 16px rgba(255,197,111,.35);
}
.step__t{ font-weight:1000; color: rgba(255,255,255,.92); line-height:1.1; }
.step__s{ font-weight:900; color: rgba(255,255,255,.62); font-size:.86rem; }

.screen__cta{ margin-top: 12px; display:grid; gap:8px; position:relative; z-index:1; }
.screen__cta-btn{
  height: 44px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(255,138,58,.92), rgba(25,166,209,.80));
  box-shadow: 0 18px 40px rgba(0,0,0,.35);
}
.screen__cta-note{ font-weight:900; font-size:.86rem; color: rgba(255,255,255,.70); }

/* glows */
.glow{
  position:absolute;
  border-radius: 999px;
  filter: blur(44px);
  opacity: .95;
  pointer-events:none;
}
.glow--a{
  width: 280px; height: 280px;
  background: rgba(25,166,209,.34);
  left: 0%;
  top: 12%;
}
.glow--b{
  width: 320px; height: 320px;
  background: rgba(255,138,58,.28);
  right: 0%;
  bottom: 8%;
}

/* =========================
   SECTIONS / HEAD
   ========================= */
.section{ padding: 66px 0; }
.section--soft{
  background:
    radial-gradient(900px 520px at 20% 30%, rgba(25,166,209,.14), transparent 60%),
    radial-gradient(900px 520px at 80% 30%, rgba(255,138,58,.11), transparent 60%),
    linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,0));
  border-top: 1px solid rgba(255,255,255,.08);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.section__head{
  max-width: 780px;
  margin-bottom: 22px;
}
.section__title{
  font-family: var(--fontTitle);
  font-weight: 1000;
  letter-spacing: -0.03em;
  font-size: clamp(1.8rem, 1.3rem + 1.2vw, 2.5rem);
  line-height: 1.1;
  margin-bottom: 10px;
}
.section__subtitle{
  font-size: 1.05rem;
  color: rgba(255,255,255,.72);
}

/* =========================
   CARDS (mais bonitos)
   ========================= */
.cards{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 18px;
}
.card{
  border-radius: 22px;
  padding: 18px;
  background: var(--gradCard);
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 20px 60px rgba(0,0,0,.32);
  transition: .45s cubic-bezier(.2,.9,.2,1);
  position:relative;
  overflow:hidden;
}
.card::before{
  content:"";
  position:absolute;
  inset:-40px;
  background:
    radial-gradient(circle at 20% 20%, rgba(25,166,209,.16), transparent 56%),
    radial-gradient(circle at 80% 40%, rgba(255,138,58,.12), transparent 58%);
  pointer-events:none;
}
.card:hover{
  transform: translateY(-6px);
  border-color: rgba(255,255,255,.18);
  background: linear-gradient(180deg, rgba(255,255,255,.12), rgba(255,255,255,.06));
}
.card__icon{
  width: 44px; height: 44px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(25,166,209,.95), rgba(255,138,58,.85));
  box-shadow: 0 18px 40px rgba(0,0,0,.30);
  margin-bottom: 12px;
  position:relative; z-index:1;
}
.card__title{
  font-family: var(--fontTitle);
  font-weight: 1000;
  letter-spacing:-0.02em;
  font-size: 1.10rem;
  margin-bottom: 8px;
  position:relative; z-index:1;
}
.card__text{
  color: rgba(255,255,255,.72);
  font-weight: 800;
  position:relative; z-index:1;
}

/* =========================
   SPLIT / FEATURE / PANEL
   ========================= */
.split{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 18px;
  align-items:start;
}
.feature{
  border-radius: 22px;
  padding: 18px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.05);
  box-shadow: 0 20px 60px rgba(0,0,0,.28);
  margin-bottom: 12px;
}
.feature__title{
  font-family: var(--fontTitle);
  font-weight: 1000;
  margin-bottom: 6px;
}
.feature__text{
  color: rgba(255,255,255,.72);
  font-weight: 800;
}

.panel{
  border-radius: 26px;
  padding: 18px;
  border: 1px solid rgba(255,255,255,.12);
  background:
    radial-gradient(800px 420px at 20% 0%, rgba(25,166,209,.18), transparent 60%),
    radial-gradient(800px 420px at 90% 40%, rgba(255,138,58,.14), transparent 62%),
    rgba(255,255,255,.05);
  box-shadow: var(--shadow);
  position: sticky;
  top: 92px;
}
.panel__title{
  font-family: var(--fontTitle);
  font-weight: 1000;
  letter-spacing:-0.02em;
  margin-bottom: 12px;
}
.pillars{ display:grid; gap:10px; }
.pillar{
  border-radius: 20px;
  padding: 14px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.05);
}
.pillar__k{ font-weight: 1000; color: rgba(255,255,255,.82); margin-bottom: 3px; }
.pillar__v{ font-weight: 800; color: rgba(255,255,255,.72); }
.panel__line{ height:1px; background: rgba(255,255,255,.10); margin: 14px 0; }
.panel__note{ color: rgba(255,255,255,.76); font-weight: 900; }

/* =========================
   STEPS
   ========================= */
.steps{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 18px;
}
.stepcard{
  border-radius: 22px;
  padding: 18px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 20px 60px rgba(0,0,0,.30);
  transition: .45s cubic-bezier(.2,.9,.2,1);
}
.stepcard:hover{
  transform: translateY(-6px);
  border-color: rgba(255,255,255,.18);
  background: rgba(255,255,255,.07);
}
.stepcard__num{
  font-family: var(--fontTitle);
  font-weight: 1000;
  letter-spacing:-0.02em;
  font-size: 1.25rem;
  background: linear-gradient(135deg, rgba(255,138,58,.95), rgba(25,166,209,.85));
  -webkit-background-clip:text;
  background-clip:text;
  color: transparent;
  margin-bottom: 8px;
}
.stepcard__title{ font-family: var(--fontTitle); font-weight: 1000; margin-bottom: 8px; }
.stepcard__text{ color: rgba(255,255,255,.72); font-weight: 800; }

/* =========================
   CTA INLINE / CTA BIG
   ========================= */
.cta-inline{
  margin-top: 18px;
  border-radius: 26px;
  padding: 18px;
  border: 1px solid rgba(255,255,255,.12);
  background:
    radial-gradient(800px 400px at 10% 50%, rgba(25,166,209,.14), transparent 60%),
    radial-gradient(800px 400px at 90% 50%, rgba(255,138,58,.12), transparent 60%),
    rgba(255,255,255,.05);
  box-shadow: var(--shadow);
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap: 14px;
  flex-wrap:wrap;
}
.cta-inline__title{ font-family: var(--fontTitle); font-weight: 1000; margin-bottom: 6px; }
.cta-inline__text{ color: rgba(255,255,255,.72); font-weight: 800; }
.cta-inline__right{ display:flex; gap:10px; flex-wrap:wrap; }

.cta-big{
  margin-top: 18px;
  border-radius: 28px;
  padding: 18px;
  border: 1px solid rgba(255,255,255,.12);
  background:
    radial-gradient(900px 500px at 20% 30%, rgba(25,166,209,.18), transparent 62%),
    radial-gradient(900px 500px at 85% 35%, rgba(255,138,58,.15), transparent 64%),
    rgba(255,255,255,.05);
  box-shadow: 0 28px 90px rgba(0,0,0,.45);
}
.cta-big__title{ font-family: var(--fontTitle); font-weight: 1000; margin-bottom: 6px; }
.cta-big__text{ color: rgba(255,255,255,.72); font-weight: 800; margin-bottom: 12px; }
.cta-big__actions{ display:flex; gap:10px; flex-wrap:wrap; }

/* =========================
   FAQ (mais bonito e organizado)
   ========================= */
.faq{ display:grid; gap: 10px; margin-top: 18px; }
.faq__item{
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.05);
  box-shadow: 0 18px 50px rgba(0,0,0,.28);
  overflow:hidden;
}
.faq__q{
  width:100%;
  text-align:left;
  padding: 16px;
  background: transparent;
  border: 0;
  cursor:pointer;
  color: rgba(255,255,255,.92);
  font-weight: 1000;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 14px;
}
.faq__icon{
  width: 14px; height: 14px;
  border-radius: 6px;
  background: linear-gradient(135deg, rgba(255,138,58,.95), rgba(25,166,209,.85));
  box-shadow: 0 0 18px rgba(255,138,58,.22);
}
.faq__a{
  max-height: 0;
  overflow: hidden;
  padding: 0 16px;
  color: rgba(255,255,255,.72);
  font-weight: 800;
  transition: max-height .35s ease, padding .35s ease;
}
.faq__item.open .faq__a{
  max-height: 200px;
  padding: 0 16px 16px;
}

/* =========================
   CONTACT FORM
   ========================= */
.contact{
  display:grid;
  grid-template-columns: 1fr;
  gap: 14px;
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  margin-top: 18px;
  align-items:start;
}
.contact__left{
  border-radius: 26px;
  padding: 18px;
  border: 1px solid rgba(255,255,255,.12);
  background:
    radial-gradient(700px 420px at 20% 20%, rgba(25,166,209,.16), transparent 62%),
    radial-gradient(700px 420px at 90% 30%, rgba(255,138,58,.12), transparent 64%),
    rgba(255,255,255,.05);
  box-shadow: var(--shadow);
}
.contact__title{ font-family: var(--fontTitle); font-weight: 1000; margin-bottom: 8px; }
.contact__text{ color: rgba(255,255,255,.72); font-weight: 800; margin-bottom: 12px; }
.contact__mini{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.contact__mini-item{
  border-radius: 18px;
  padding: 12px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.05);
  text-align:center;
}
.contact__mini-k{ font-weight: 900; color: rgba(255,255,255,.74); }
.contact__mini-v{ font-family: var(--fontTitle); font-weight: 1000; color: rgba(255,255,255,.92); }

.form{
  border-radius: 26px;
  padding: 18px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.05);
  box-shadow: var(--shadow);
}
.form__row{ display:grid; gap: 8px; margin-bottom: 12px; }
.form__label{ font-weight: 900; color: rgba(255,255,255,.82); font-size: .92rem; }
.form__input, .form__textarea{
  width:100%;
  padding: 13px 14px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(7,18,28,.35);
  color: rgba(255,255,255,.92);
  outline:none;
  font-weight: 800;
}
.form__textarea{ min-height: 120px; resize: vertical; }
.form__input:focus, .form__textarea:focus{
  border-color: rgba(25,166,209,.36);
  box-shadow: 0 0 0 4px rgba(25,166,209,.14);
}
.form__fine{
  margin-top: 10px;
  color: rgba(255,255,255,.56);
  font-weight: 700;
  font-size: .92rem;
}

/* =========================
   FOOTER
   ========================= */
.footer{
  padding: 46px 0 0;
  border-top: 1px solid rgba(255,255,255,.08);
  background: linear-gradient(180deg, rgba(7,18,28,0), rgba(0,0,0,.30));
}

.footer__grid{
  display:grid;
  grid-template-columns: 1.2fr .9fr .9fr;
  gap: 14px;
  padding-bottom: 20px;
}

.footer__logo{
  width: 180px;
  filter: drop-shadow(0 10px 22px rgba(0,0,0,.35));
}

.footer__text{
  color: rgba(255,255,255,.68);
  font-weight: 800;
  margin-top: 8px;
}

.footer__title{
  font-family: var(--fontTitle);
  font-weight: 1000;
  margin-bottom: 10px;
}

.footer__link{
  display:block;
  padding: 6px 0;
  color: rgba(255,255,255,.68);
  font-weight: 800;
  transition: .25s ease;
}

.footer__link:hover{
  color: rgba(255,255,255,.92);
  transform: translateX(3px);
}

.footer__bottom{
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 14px 0;
}

.footer__bottom-content{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap: 14px;
  flex-wrap:wrap;
}

.footer__copy{
  color: rgba(255,255,255,.56);
  font-weight: 800;
  font-size: .94rem;
}

.footer__top{
  font-weight: 1000;
  padding: 8px 12px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.06);
  transition: .25s ease;
}

.footer__top:hover{
  transform: translateY(-1px);
  background: rgba(255,255,255,.10);
}

/* =========================
   RESPONSIVE
   ========================= */
@media (max-width: 1024px){
  .hero__grid{ grid-template-columns: 1fr; }
  .hero__visual{ min-height: 460px; }

  .cards{ grid-template-columns: repeat(2, 1fr); }
  .steps{ grid-template-columns: repeat(2, 1fr); }

  .split{ grid-template-columns: 1fr; }
  .panel{ position: relative; top:auto; }

  .contact{ grid-template-columns: 1fr; }
  .footer__grid{ grid-template-columns: 1fr; }
}

@media (max-width: 760px){
  .nav{ display:none; }
  .nav__cta{ display:none; }
  .nav__toggle{
    display:inline-flex;
    align-items:center;
    justify-content:center;
  }

  .hero{ padding-top: 52px; }
  .hero__trust{ grid-template-columns: 1fr; }

  .cards{ grid-template-columns: 1fr; }
  .steps{ grid-template-columns: 1fr; }

  .contact__mini{ grid-template-columns: 1fr; }
}